Android:在Gridview中使用RadioGroup

时间:2013-03-05 01:15:23

标签: java android gridview adapter radio-group

我想在GridView中布置几十个单选按钮。 现在,我已经通过创建自定义适配器并覆盖getView函数(然后在GridView上调用setAdapter)来完成此操作。 唯一的问题是,我无法将这些单选按钮包含在RadioGroup中,因此我可以强制执行单个按钮选择。

我查看了各种stackoverflow帖子(例如这个:Radio Group implementation on Grid View in Android),但我还没有找到一种直接的方法来完成这项工作。我已经尝试在我的主XML中围绕GridView标记抛出RadioGroup标记,但这不起作用。

到目前为止,这是我的一些相关代码:

    private class RadioGridAdapter extends BaseAdapter{
    private Context mContext;
    RadioGridAdapter(Context c) {
        mContext = c;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent){
        LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        View gridView;
        if(convertView == null) {
            gridView = inflater.inflate(R.layout.cell, null);

            //set value into Button
            RadioButton ButtonView = (RadioButton) gridView.findViewById(R.id.interval_button);
            ButtonView.setText(intervals[position]);

        } else {
            gridView = (View) convertView;
        }

        return gridView;
    }
}

cell.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RadioButton
    android:id="@+id/interval_button" 
    android:layout_width="match_parent"
   android:layout_height="match_parent" >
</RadioButton> 
</LinearLayout>

activity_main.xml中:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >

<GridView
    android:id="@+id/gridview"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:columnWidth="90dp"
    android:gravity="center"
    android:horizontalSpacing="20dp"
    android:numColumns="auto_fit"
    android:paddingLeft="15sp"
    android:paddingRight="15sp"
    android:stretchMode="columnWidth"
    android:verticalSpacing="10dp" >
</GridView>

</LinearLayout>

谢谢!

更新: 根据这篇文章(radio button multiple rows)以及这篇文章(How to group a 3x3 grid of radio buttons?),没有一种简单的方法可以做到这一点,而无需自己扩展RadioGroup类,以便能够在网格中包含单选按钮格式..有没有人知道以这种方式使用RaioGroup的开源项目?

1 个答案:

答案 0 :(得分:0)

您可以使用ListView而不是GridView。enter image description here

如需帮助,请参阅我的Android应用程序博客

http://amitandroid.blogspot.in/2013/03/android-listview-with-radiogroup.html

希望这篇博客能为您提供帮助。

非常感谢,