안드로이드에서 화면 스크롤을 구성하는 것은 ScrollView를 사용하여 아래와 같이 간단하게 처리할 수 있다.
android:paddingRight="5px" 는 스크롤을 위한 여백을 주기 위해 사용 한다.
<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingRight="5px"
>
여기에 화면 구성
</LinearLayout>
</ScrollView>
*** 참고 문헌 ***
Posted by 산사랑

