看看ScrollView。它支持像网站一样的滚动行为,允许布局“大于”物理屏幕尺寸。
需要注意的一件事;AScrollView
只能包含一个直接子级。因此,如果您的布局包含多个Views
,例如TextViews
and Buttons
,您必须将它们全部包装在LinearLayout
orRelativeLayout
中。
有很多孩子的布局:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout id="@+id/wrapper_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView />
<EditText />
<Button />
</LinearLayout>
</ScrollView
当您只有一个孩子时,您不需要“包装器”布局:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView id="@+id/lots_of_text_that_need_scrolling" />
</ScrollView>