我有 5 个按钮,每个按钮的宽度都不同,因为有些按钮的文本比其他按钮多。
我希望它们对齐,但问题是如果屏幕很小,它们的宽度不适合(在平板电脑上看起来很完美,但在移动设备上看起来一点也不好看)
我怎样才能实现如下图所示的效果?如果屏幕尺寸太小,按钮不适合自动换行,但如果屏幕尺寸足够大,可以让它们全部对齐。
布局.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:hardwareAccelerated="true"
tools:context=".MainActivity" >
<WebView
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/button3"
android:hardwareAccelerated="true" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:src="@drawable/id_moduls" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="40dp"
android:orientation="horizontal" >
<Button
android:id="@+id/btnbmwx6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="BMW X6" />
<Button
android:id="@+id/btnbmwz4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/btnbmwx6"
android:text="BMW Z4" />
<Button
android:id="@+id/btnbmw1s3d"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="BMW 1s 3-Doors" />
<Button
android:id="@+id/btnbmw6sgrancoupe"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="BMW 6s Gran Coupe" />
<Button
android:id="@+id/btnbmw5stouring"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="BMW 5s Touring" />
</LinearLayout>
</RelativeLayout>