若Activity中的內容太多,或是ListView的項目超過畫面
可以在Activity加上捲軸來解決
一、畫面上方加上
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
二、畫面下方加上
</ScrollView>
注意:注意原來在<LinearLayout>或<RelativeLayout>裡的 android="http://schemas.android.com/apk/res/androi 要去掉
三、範例:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
.
.
.
.
</RelativeLayout>
</ScrollView>
沒有留言:
張貼留言