Android 动态添加RadioButton

今天无聊逛论坛,发现了动态添加RadioGroup现有网络资料千篇一律,而且麻烦得要死,于是自己动手按照自己的思路尝试了一遍,发现很容易解决的问题。现在贴下自己的例子。

注:暂时没有深入测试,样式没有调整,不过感觉问题不大。完全没有必要用其他方法,太啰嗦。

RadioGroup布局:

     <RadioGroup
            android:id="@+id/tabs_type"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/transparent"
            android:orientation="horizontal"
            android:padding="10dp">

        </RadioGroup>

 

RadioButton布局:

<?xml version="1.0" encoding="utf-8"?>
<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dp"
    android:layout_weight="1"
    android:background="@drawable/bg_edittext"
    android:button="@null"
    android:drawableTop="@null"
    android:padding="15dp"
    android:gravity="center"
    android:singleLine="true"
    android:text="@string/station_list"
    android:textColor="@drawable/home_switch_button_selector"
    android:textSize="@dimen/text_narmal"
    android:textStyle="bold" >

</RadioButton>

 

动态添加的关键代码:

                    for (int i = 0; i < size; i++) {
                        RadioButton radioButton = (RadioButton) mInflater.inflate(R.layout.radio_button,null);
                        radioButton.setText(“第”+i+"个");
                        mRadioGroup.addView(radioButton);
                    }

 

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值