2

所以,我有一些简单的布局,有一些文本和一个按钮。文本在开始时定位,在某些手机上,高度高于屏幕高度,因此我将其定位在滚动视图中。在该文本旁边,我还有一个文本视图和一个按钮,该按钮应位于屏幕的右下角。问题是一个大屏幕我的按钮不在底部,而是在文本结束的地方,我可以看到我的 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但没有效果。

4

1 回答 1

8

添加android:fillViewport="true"到您的滚动视图

于 2013-02-21T10:23:34.223 回答