今天无聊逛论坛,发现了动态添加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);
}