Android ScrollView的使用
2010-10-12 02:20:00 来源:本站整理ScrollView卷轴视图是指当拥有很多内容,一屏显示不完时,需要通过滚动跳来显示的视图.的使用:
xml 代码
1. < ?xml version="1.0" encoding="utf-8"?>
2. < ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3. android:id="@+id/ScrollView" android:layout_width="fill_parent"
4. android:layout_height="wrap_content" android:scrollbars="vertical">
5. < LinearLayout android:id="@+id/LinearLayout"
6. android:orientation="vertical" android:layout_width="fill_parent"
7. android:layout_height="wrap_content">
8. < TextView android:id="@+id/TestView" android:layout_width="fill_parent"
9. android:layout_height="wrap_content" android:text="TestView0" />
10. < Button android:id="@+id/Button" android:text="Button0" android:layout_width="fill_parent"
11. android:layout_height="wrap_content">< /Button>
12. < /LinearLayout>
13. < /ScrollView>
< ?xml version="1.0" encoding="utf-8"?>
< ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:scrollbars="vertical">
< LinearLayout android:id="@+id/LinearLayout"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="wrap_content">
< TextView android:id="@+id/TestView" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="TestView0" />
< Button android:id="@+id/Button" android:text="Button0" android:layout_width="fill_parent"
android:layout_height="wrap_content">< /Button>
< /LinearLayout>
< /ScrollView>
Java 代码
Tags:Android ScrollView 使用
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接