0
我如何設置三個按鈕彼此相鄰,以適應Android屏幕的屏幕大小。 使用此屏幕的50%50%。但如果我想添加第三個按鈕,我該如何實現這一點。即35%35%35%和5%的空間。屏幕上的三個按鈕寬度Android
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:weightSum="1.0">
<Button
android:id="@+id/textbox3"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:layout_width="0dip"
android:textSize="12sp" />
</LinearLayout>
你到底想要什麼? 35%35%35%和5%等於110% 第三個按鈕右側需要3個按鈕和緩衝空間嗎? – 2013-03-01 06:33:11