确保将该行留在version/encoding
文件的最顶部。
更改RelativeLayout
为ScrollView
然后RelativeLayout
在新的ScrollView
.
确保你给出了RelativeLayout
一些尺寸,它们应该与ScrollView
宽度和高度尺寸相同。
嵌套RelativeLayout
包含所有小部件的 的原因是一个ScrollView
元素只能有一个子元素(在这种情况下, the RelativeLayout
,然后有自己的子元素)。
因此这段代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- all your widgets -->
</RelativeLayout>
变成了这段代码:
<?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" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- all your widgets -->
</RelativeLayout>
</ScrollView>