我希望在行的右側有按鈕B1和B2,按鈕A1和A2位於該行剩餘空間的中心。避免佈局冗餘
這是可能的,而不包裹按鈕的兩次?
下面是具體問題的具體細節。
Eclipse中表示,「這的LinearLayout佈局或RelativeLayout的父母可能是無用的」批評了兩家母公司佈局,@id/buttonAx
。
<?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" >
<LinearLayout
android:id="@+id/myRightMostLL"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true" >
<Button
android:id="@+id/buttonB1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B1" />
<Button
android:id="@+id/buttonB2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B2" />
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/myRightMostLL">
<LinearLayout
android:id="@+id/remainderLL"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true">
<Button
android:id="@+id/buttonA1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="A1" />
<Button
android:id="@+id/buttonA2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="A2" />
</LinearLayout>
</RelativeLayout>
</RelativeLayout>
然而我需要這種無用的能夠將按鈕A置於按鈕B佈置後剩餘的空間中。只有一個按鈕A的父包裝佈局可以獲得相同的效果嗎?
在這樣的佈局中,我也經常質疑@ id/myRightMostLL是否真的有必要在文件中出現第一個。
除了爲按鈕A設置左右邊距之外,我無法真正想到另一種解決方案,但我不認爲這將是一種多用途的方法。老實說,如果它正在產生所需的結果,我只是壓制這個警告,因爲它只是不明白你需要什麼。 – user2483079
附加按鈕是否與ButtonA,ButtonB或每個按鈕分組?他們將如何定位?最好告訴我們您的實際需求,而不是模糊的警告,即只有兩個按鈕的解決方案不適合您。 –
@TedHopp Done .. – Calaf