如何在我的 Android 应用程序的登录布局中将两个按钮放在同一行?
8 回答
只需做一个线性布局。将方向设置为水平并添加两个按钮。它准备好你会得到你想要的。在发布这样的问题之前尝试谷歌搜索你会得到肯定的答案。这段代码会帮助你。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
如果您想在布局中放置两个按钮。将两个按钮的权重设为 1。
最好的解决方案是在 LinearLayout中放置2 个按钮(宽度相等) 。
还有一件事,如果您想要相等的“宽度”按钮,那么将具有 0dp 宽度和相同权重的按钮用于所有按钮。
如果您想要相等的“高度”按钮,那么将具有 0dp 高度和相同权重的按钮用于所有按钮。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
使用这个把两个按钮放在同一行....
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Login"
android:layout_alignParentBottom="true"
/>
<Button
android:id="@+id/cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cancel"
android:layout_toRightOf="@+id/login"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
您需要添加线性布局(水平)。那么你可以在一行中添加许多按钮......
你也可以为此使用相对布局。
这是给你的代码......
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:layout_width="fill_parent" android:id="@+id/linearLayout1" android:layout_height="wrap_content">
<Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:text="Button" android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:text="Button" android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:text="Button" android:id="@+id/button4" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</LinearLayout>
您可以使用一种水平方向的线性布局并在其中添加两个按钮
<LinearLayout
<Button1.../>
<Button2.../>
</LinearLayout>
我认为您需要使用RelativeLayout。您可以执行以下操作:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:orientation="horizontal"
android:layout_width="fill_parent">
<Button
android:text="@+id/Button01"
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true">
</Button>
<Button
android:text="@+id/Button02"
android:id="@+id/Button02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true">
</Button>
</RelativeLayout>
你也可以参考这个。 http://www.mkyong.com/android/android-relativelayout-example/
希望这会帮助你。
如果您将按钮放置在 LinearLayout 中,请将 Orientation 值指定为“Vertical”,它会自动将按钮放置在同一行中。如果您使用的是 RelativeLayout,那么对于一个按钮,使用 android:layout_toLeftOf 或 android:layout_toRightOf 并将值作为其他按钮的 ID。如果你答对了,请将其标记为答案。谢谢...
您可以使用水平方向的线性布局并在其中添加两个按钮:-
<LinearLayout
android:id="@+id/btn_action_wallet_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="20dp"
android:layout_marginEnd="20dp"
android:layout_below="@id/ll_total_coin_container"
android:layout_marginTop="20dp"
android:orientation="horizontal">
<Button
style="@style/Widget.MaterialComponents.Button.OutlinedButton.Icon"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:fontFamily="@font/lato_black"
android:layout_weight="2"
android:text="Redeem" />
<Space
android:layout_width="20dp"
android:layout_height="wrap_content" />
<com.google.android.material.button.MaterialButton
style="@style/Widget.MaterialComponents.Button.OutlinedButton.Icon"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Earn More"
android:layout_weight="2"
android:fontFamily="@font/lato_black" />
</LinearLayout>
运行它,看看它是如何工作的