2013年10月9日 星期三

Android-畫面加上捲軸 ScrollView

若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>

--好康廣告--

沒有留言:

  加入書籤: HemiDemi Yahoo! My Web Google Bookmarks technorati 收進你的MyShare個人書籤 Del.icio.us
Related Posts Plugin for WordPress, Blogger...