我想在一个水平方向的线性布局中添加两个按钮,如果屏幕更大,我希望我的按钮被拉伸,如果屏幕很小,我应该怎么做才能让它们保持相同的大小?
填充父级或匹配父级导致屏幕上仅显示一个,应该如何使它们在任何屏幕尺寸上同时可见?
我想在一个水平方向的线性布局中添加两个按钮,如果屏幕更大,我希望我的按钮被拉伸,如果屏幕很小,我应该怎么做才能让它们保持相同的大小?
填充父级或匹配父级导致屏幕上仅显示一个,应该如何使它们在任何屏幕尺寸上同时可见?
给他们两个以下属性:
weight =1
layout_width=fill_parent
这是一个工作代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 1" >
</Button>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Button 2" >
</Button>
</LinearLayout>