我希望我的內部RelativeLayout
包裝它的內容並保持在View
元素以下。爲什麼它的行爲不像下面的圖片?Relativelayout不包裝其內容
我layout.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/linearLayout"
android:layout_above="@+id/input_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<RelativeLayout
android:id="@+id/input_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#ebebeb">
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@+id/imageView13"
android:layout_toStartOf="@+id/imageView13"
android:background="@android:color/white"
android:padding="8dp" />
<ImageView
android:id="@+id/imageView13"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:src="@drawable/ic_m_send" />
</RelativeLayout>
</RelativeLayout>
因爲你'View'寬度和高度都設置爲'match_parent',所以沒有任何空間可用於'RelativeLayout' –
沒有使用bro。設置它的高度,任何事情都無法實現。 –
試試這個: 設置你的'View'高度爲例如100dp,然後設置你的'RelativeLayout' layout_below =「@ + id/linearLayout」,我認爲它會工作。 –