我在這裏搜索了很多,並試圖提供有關如何對齊我的相對佈局中的子對象的信息,但其中一個不顯示。Android layout_toLeftOf不工作
這是我的代碼:
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignLeft="@id/textView1"
android:layout_below="@id/textView1"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp">
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="example"
android:layout_centerVertical="true"/>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/textView2"
android:layout_alignBottom="@id/textView2"
android:text="example" />
</RelativeLayout>
TextView3不會出現在所有。看起來有一個缺失或衝突的規則,但我無法弄清楚哪一個。
簽出我的解決方案,爲我工作:) – Rob