我如何将三个按钮设置为彼此相邻以适应 android 中屏幕的屏幕尺寸。对于 50% 50% 的屏幕,这是使用的。但如果我想添加第三个按钮,我该如何实现。即 35% 35% 35% 和 5% 用于空间。
<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>