我有一排按钮,我想让它们全部显示在一条线上,如果转向横向,然后在纵向时适合尽可能多的按钮,并将其他按钮移动到下方。 目前,按钮只是在一排挤压在一起。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="horizontal"
android:gravity="center_horizontal">
<Button
android:id="@+id/Button02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/analoguebutton" />
<Button
android:id="@+id/Button03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/analoguebutton" />
<Button
android:id="@+id/Button04"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="@drawable/analoguebutton" />
答案 0 :(得分:2)
制作两个名称相同的布局
将“竖直”放置在 res / layout-port 中,将“水平”置于 res / layout-land 。
设计两种布局以符合您的口味
Android会根据设备的方向自动选择此布局或布局。
答案 1 :(得分:2)
只需在所有按钮中将android:layout_width="wrap_content"
更改为android:layout_width="match_parent"
,然后将android:layout_weight="1"
提供给所有三个按钮。希望它有效。