Container Scroll
스마트폰의 화면은 크기가 제한적 임으로 스크롤의 사용이 중요하다.
스크롤 구현 방법은 다음과 같이 스크롤 시키고 싶은 container를 ScrollView elememt내부에 nest 시키면 된다.
ScrollView 예제 (main.xml)
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent" >
<!-- 어떤 Layout을 사용해도 상관없음 -->
<!-- 스크롤 바를 위한 공간 확보용 paddingRight="5px" 주목 -->
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingRight="5px" >
<TextView
android:layout_width="fill_parent"
android:layout_height="300px"
android:background="#FF0000"
android:text="TextView 1" />
<TextView
android:layout_width="fill_parent"
android:layout_height="300px"
android:background="#00FF00"
android:text="TextView 2" />
<TextView
android:layout_width="fill_parent"
android:layout_height="300px"
android:background="#0000FF"
android:text="TextView 3" />
</LinearLayout>
</ScrollView>
'scrap > Android' 카테고리의 다른 글
Activity를 refresh 할 수 있나요? (0) | 2011.02.04 |
---|---|
Android File List (0) | 2011.02.04 |
SQLite (0) | 2011.02.04 |
android - 다수의 Insert 수행시 속도 향상을 위한 팁 (0) | 2011.02.03 |
android 가로모드 막기 & 세로모드 막기 (0) | 2011.02.03 |