除了“Steff”的建议外,请允许我补充一点。 在你创立了一块非地圈子并建立了XML之后,你可以考虑在一份电文中概述你的布局。 我有一个类似的问题,这一解决办法对我来说是完美的。 这里是一部法典:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:layout_weight="1" >
<ScrollView
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" >
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="3dp" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:text="NAME"
android:padding="3dp"
android:textColor="#666666"
android:textSize="16sp" >
</TextView>
<TextView
android:text="Name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/summaryContactName"
android:padding="3dp"
android:textColor="#111111"
android:textSize="17sp" >
</TextView>
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
All the elements that you put under the ScrollView will make sure that the screen content is never cut off.
希望会有所助益。