我正在尝试将片段下的红色按钮(android:id="@+id/button8
)添加到左侧位置的新图层中,但它无法响应并仍然位于顶部作为照片:
XML文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="bottom"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin" >
<LinearLayout
android:id="@+id/topLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:orientation="horizontal" >
<Button
android:id="@+id/button1"
android:layout_width="38dp"
android:layout_height="30dp"
android:background="#000000"/>
</LinearLayout>
<fragment
android:id="@+id/fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/topLayout" />
<LinearLayout
android:id="@+id/ttt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:orientation="horizontal" >
<Button
android:id="@+id/button8"
android:layout_width="38dp"
android:layout_height="30dp"
android:background="#FF0000" />
</LinearLayout>
答案 0 :(得分:0)
请注意,RelativeLayout不会考虑将元素放入xml的顺序。为此使用LinearLayout
。在您的情况下,您必须指定您的布局在框架之后。
试试这个:
<fragment
android:id="@+id/fragment"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/ttt"
android:layout_below="@id/topLayout" />
<LinearLayout
android:id="@+id/ttt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:gravity="left"
android:orientation="horizontal" >
<Button
android:id="@+id/button8"
android:layout_width="38dp"
android:layout_height="30dp"
android:background="#FF0000" />
</LinearLayout>