WEB开发网
开发学院手机开发Android 开发 Android ScrollView的使用 阅读

Android ScrollView的使用

 2010-10-12 02:20:00 来源:本站整理   
核心提示:ScrollView卷轴视图是指当拥有很多内容,一屏显示不完时,Android ScrollView的使用,需要通过滚动跳来显示的视图.的使用:xml 代码1. < ?xml version="1.0" encoding="utf-8"?>2. < Scroll

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 代码

1 2 3 4 5  下一页

Tags:Android ScrollView 使用

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接