我想創建一個工具欄,看起來像:如何在LinearLayout中分隔項目?
我怎樣才能做到這一點的XML?這是我目前的樣子:
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/toolbarLinearLayout" android:background="@color/solid_yellow">
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/replyButton" android:text="Reply"></Button>
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="RT" android:id="@+id/rtButton"></Button>
<Button android:id="@+id/dmButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="DM"></Button>
</LinearLayout>
這將填補它周圍。這很好,但我希望左右的距離等距離,更像上圖那樣突出。 – 2011-05-23 23:01:55
我試着添加paddingLeft&paddingRight,但是按鈕之間的空間沒有被填充 – 2011-05-23 23:05:53
嘿,我已經稍微更新了我的答案 - 希望這更符合您所尋找的內容。 – actionshrimp 2011-05-23 23:09:42