我有以下布局文件:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:text="TOP"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<RelativeLayout
android:background="@color/azul_pressed"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv1"
android:paddingLeft="100dp"
android:text="|RIGHT--"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/tv2"
android:layout_toLeftOf="@id/tv1"
android:text="--LEFT|"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
<TextView
android:text="BOTTOM"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
产生以下输出:
这一行:
android:layout_toLeftOf="@id/tv1"
导致tv2从屏幕上消失并创建所有额外的蓝色空间。
为什么?