Android设置所有Button在同一行,

Posted 油醋三椒

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android设置所有Button在同一行,相关的知识,希望对你有一定的参考价值。

layout布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff">
    <Button
        android:id="@+id/type"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:text="样式" />

    <Button
        android:id="@+id/tools"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:text="工具" />

    <Button
        android:id="@+id/output"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:text="导出" />

</LinearLayout>

样式展示:

以上是关于Android设置所有Button在同一行,的主要内容,如果未能解决你的问题,请参考以下文章

Android XML布局中,怎么设置两个Button按钮在同一行显示

在同一行中获取所有 <td>

如何为所有 iphone 设备在同一行中设置多个 UIlabel

android studio 编写时textview 和edittext无法在同一行显示

如何在同一行获得两个日期选择器?

安卓界面布局如何改变所有button的背景颜色?