内容运行到alignparentbottom

时间:2012-03-25 08:52:55

标签: android android-layout

http://dl.dropbox.com/u/24856/android_issue.PNG

我的文本视图在顶部运行到相对布局,底部有两个嵌套按钮。我尝试将margin底部放在top元素上,然后是margin top和android:layout_alignParentBottom元素,但它没有改变文本遇到按钮的事实。

1 个答案:

答案 0 :(得分:2)

您没有提供布局文件,因此这里有一个关于如何避免该问题的小例子:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:id="@+id/btn_bar"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" >

        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button1" />

        <Button
            android:id="@+id/button2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Button2" />
    </LinearLayout>

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/btn_bar"
        android:layout_alignParentTop="true" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="TextView" />
    </ScrollView>


</RelativeLayout>