說我有下面的XML如何將視圖定位到兄弟的View子項的右側? Android的XML
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/child1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/child2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2">
</RelativeLayout>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_toEndOf="@+id/child1"/> // CAN'T DO THIS need work around
</RelativeLayout>
我有類似的措施。我有一個LinearLayout
與一個RelativeLayout
內的許多孩子,我有一個View
重疊child1和child2。但我希望它只重疊兒童2.
是否有任何解決方法呢? 我可以發佈我的實際代碼,如果需要的話,有點寫在飛。
是的,但後來我不能通過重量分隔內部的孩子,我不得不使用硬編碼的寬度大小。 – Pants