所以,我有一些简单的布局,有一些文本和一个按钮。文本在开始时定位,在某些手机上,高度高于屏幕高度,因此我将其定位在滚动视图中。在该文本旁边,我还有一个文本视图和一个按钮,该按钮应位于屏幕的右下角。问题是一个大屏幕我的按钮不在底部,而是在文本结束的地方,我可以看到我的 relativelayout 没有占据 scrollView 的整个高度。我的布局:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:text="Some dummy text"
android:textColor="#969696"
android:textSize="13dp" />
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="false"
android:layout_below="@+id/text1"
android:text="some dummy text2"
android:textColor="#969696"
android:textSize="13dp" />
<ImageButton
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:src="@drawable/btn49_2x" />
</RelativeLayout>
</ScrollView>
我的真实布局有点复杂,所以我需要使用相对布局。但是如何确保它占据整个屏幕高度?
我尝试将高度设置为wrap:content
但没有效果。