LinearLayout 动态添加子Button,并自动换行

本文介绍了如何在Android中使用LinearLayout动态添加Button,并根据Button的数量自动换行。通过设置LayoutParams权重和宽度,实现了不同长度的Button均匀分布。代码示例详细展示了实现过程。
摘要由CSDN通过智能技术生成

最近项目了需要如下图的搜索需求,网上找了些资料,要么太复杂,要么不符合要求。后来想了想,想到了一个非常便捷的方案。


直接上代码吧

contentView的布局:

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:orientation="vertical">
     
</LinearLayout>


添加Button的布局

<?xml version="1.0" encoding="utf-8"?>
 <Button xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/item_btn"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:text="@string/register"
     android:textColor="@color/cmmn_black"
     android:clickable="false"
     android:singleLine="true"
     android:paddingTop="8dp"
     android:paddingBottom="8dp"
     android:ellipsize="end"
     android:background="@color/divider_color"
     android:textSize="@dimen/btn_size" />  


布局OK后,代码如下:

private static String[] testName = {"日历","360","三国","消除","播放器", 
"游戏", 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值