Android XML布局中,设置两个Button按钮在同一行显示的常用方法

--BEGIN ITLIFE365
Android XML布局中,设置两个Button按钮在同一行显示的常用方法
原理:
在Button外面使用线性布局,设置水平属性;
Button的宽设置是wrap;在Button里面分别添加 android:layout_weight=“1” 可以使两个button所占空间一样
XML示例代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:orientation="horizontal">
            <Button
                android:layout_width="100dp"
                android:layout_height="wrap_content"
                android:text="取消"
                android:id="@+id/button_cancel"
                android:background="#ff029bda"
                android:textColor="#ffcff6fb"
                android:layout_marginLeft="30dp"/>
            <TextView
                android:layout_width="100dp"
                android:layout_height="100dp" />
            <Button
                android:layout_width="100dp"
                android:layout_height="wrap_content"
                android:text="确定"
                android:id="@+id/button_sure"
                android:layout_marginTop="30dp"
                android:background="#ff029bda"
                android:textColor="#ffcff6fb"
                android:layout_gravity="end" />
        </LinearLayout>
--END BY ITLIFE365  
how-android-button-on-same-line

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

«    2024年11月    »
123
45678910
11121314151617
18192021222324
252627282930
搜索
标签列表
网站分类
最新留言
    文章归档
    友情链接

    Powered By Z-BlogPHP 1.7.3

    Copyright Your WebSite.Some Rights Reserved.闽ICP备11018667号-2