我需要添加单选按钮动态,意味着单选按钮可能是3,4,5或6,它将被添加水平和一行包含最多3单选按钮,如果有更多然后3那么它会出现在网格视图上方的单选按钮的下方,我在这里工作2天,但没有得到任何解决方案..请帮助,任何帮助将不胜感激.. 我的单选按钮代码如下但它在单排显示所有单选按钮,..意味着其隐藏所述单选按钮..添加单选按钮动态︰android
main.xml中:
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Choose Your Favorite Actress" >
android:id="@+id/RadioGroup01"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
android:id="@+id/Button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Submit" >
和J AVA类:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
DisplayRadioButton();
}
public void DisplayRadioButton() {
for(int i=0;i<10;i++) {
RadioGroup radiogroup = (RadioGroup)findViewById(R.id.RadioGroup01);
RadioButton rdbtn = new RadioButton(this);
rdbtn.setId(i);
rdbtn.setText(text[i]);
radiogroup.addView(rdbtn);
}
}
2012-07-18
SRam
+0
你为什么不采取单选按钮,网格视图,只是根据你的需要更改适配器。 –
2012-07-18 08:03:53
+0
hi deepak ..我从来没有用户单选按钮的网格视图,你可以请建议我一些链接,或者如果你可以分享我的代码..我会高度thakfull你 –
2012-07-18 08:50:29
+0
deepak其实在我的项目我有一个需求像我有一个问题,有一些基于这个单选按钮的答案,选项是动态的,一些问题有4个选项,有些有5或6,所以我需要动态实现它..我想你明白我的观点。 .so现在,如果你可以请帮助我 –
2012-07-18 09:13:05