안드로이드 앱 개발할때 xml파일에서 TextView에 많은 Text를 넣을 경우가 있습니다.
Text를 너무 많이 넣은 경우에는 에뮬레이터나 폰의 화면이 작아 Text가 다 보여주지 못하고 깔리는 경우가 있습니다.
그럴 경우엔 xml파일에 아래와 같이 <scroll>태그를 넣으면 됩니다.
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android";
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android";
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
(생략)
</LinearLayout>
</ScrollView>
에뮬레이터나 폰의 화면에서 Text가 처음엔 짤려보여도 스크롤이 생겨 손가락이나 마우스로 밀면 다 보여주는 것을 확인할 수 있습니다.
ps. 안드로이드 앱 개발의 절반은 XML이 먹고 가더라는 말을 해봅니다... (내부구조는 Linux Kernel+Dalvik VM, Application Layer는 Java, UI는 XML로 처리)
'Mobile > Android' 카테고리의 다른 글
네이트,싸이월드,미니홈피 모바일홈페이지 구축 및 앱설치가능 (0) | 2010.05.31 |
---|---|
언로킹 안드로이드 소스코드 얻기 (0) | 2010.05.31 |
hTC Desire에 구글 Voice Search 설치하기 (2) | 2010.05.29 |
안드로이드용 Adobe Acrobat 출시 (0) | 2010.05.26 |
HTC Desire Rooting기록 - 1. Gold Card작성하기. (0) | 2010.05.26 |