多行列单选按钮组RadioButton的实现

Android通过RadioGroup设置一组单选按钮RadioButton,但在RadioGroup中只能设置按钮排序为横排或纵排。当需要实现多行多列的单选按钮组时,查了网上的方法,发现两种解决方式:

一、通过在xml中设置margin

android:layout_marginLeft="-100dip"

android:layout_marginTop="40dip"

这种方式兼容性不理想,对于不同尺寸的设备需对margin进行相应调整。

二、对RadioGroup进行改写:

链接:http://jasonshieh.iteye.com/blog/1972131

这个太长了,我没试= =

测试发现可用另一种较为简单的方法实现单选按钮组多行列的效果

思路:

1.假设要做一个两行三列的单选按钮组,可设置一个水平方向的LinearLayout,再在其中放置两个垂直方向的RadioGroup,每个RadioGroup含有两个按钮

2.完成步骤1后,从视觉效果上来说已完成了一个两行两列的按钮,但由于其由两个RadioGroup组成,所以无法达到单选的效果。为此,我们可以为Group中的RadioButton设置监听器,当Group1中的按钮被按下时,取消Group2中的选中状态即可。

code:

I.xml布局:一个LinearLayout,两个RadioGroup,每个RadioGroup含有3个RadioButton

<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal" >

        <RadioGroup
            android:id="@+id/radiogrp1"
            android:layout_width="0px"
            android:layout_height="fill_parent"
            android:layout_weight=".5" >

            <RadioButton
                android:id="@+id/bnA"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="A"
                android:textSize="70px" />

            <RadioButton
                android:id="@+id/bnB"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="B"
                android:textSize="70px" />

            <RadioButton
                android:id="@+id/bnC"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="C"
                android:textSize="70px" />
        </RadioGroup>

        <RadioGroup
            android:id="@+id/radiogrp2"
            android:layout_width="0px"
            android:layout_height="fill_parent"
            android:layout_weight=".5" >

            <RadioButton
                android:id="@+id/bnD"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="D"
                android:textSize="70px" />

            <RadioButton
                android:id="@+id/bnE"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="E"
                android:textSize="70px" />

            <RadioButton
                android:id="@+id/bnF"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="F"
                android:textSize="70px" />
        </RadioGroup>
    </LinearLayout>

</RelativeLayout>

II.MainActivity:获取所有的RadioButton并对其设置监听器,每当用户选中Group1的Button时,取消Group2中按钮的选中状态,反之亦然。为设置方便,本例中编写了监听器类

public class MainActivity extends Activity {
	//用于保存当前被选中的按钮
	String strBtnSelected = "unInit";

	RadioButton btn1;
	RadioButton btn2;
	RadioButton btn3;
	RadioButton btn4;
	RadioButton btn5;
	RadioButton btn6;

	RadioGroup grp1;
	RadioGroup grp2;

	//监听类,每个Radiobutton均对Click动作进行监听:若用户点击的是Group1的按钮(A或B或C),则清除Group2中按钮被选中的状态
	//若用户点击的是Gourp2的按钮(B或C或D),则清除Group1中按钮被选中的状态。其中的1~6分别对应按钮A~F
	public class BtnSelected implements OnClickListener {
		public BtnSelected(String str) {
			bntID = str;
		}

		final public String bntID;

		@Override
		public void onClick(View arg0) {
			// TODO Auto-generated method stub
			strBtnSelected = bntID;

			if (bntID.equals("1") || bntID.equals("2") || bntID.equals("3")) {
				grp2.clearCheck();
			} else if (bntID.equals("4") || bntID.equals("5")
					|| bntID.equals("6")) {
				grp1.clearCheck();
			}
		}
	};

	BtnSelected btnListener1 = new BtnSelected("1");
	BtnSelected btnListener2 = new BtnSelected("2");
	BtnSelected btnListener3 = new BtnSelected("3");
	BtnSelected btnListener4 = new BtnSelected("4");
	BtnSelected btnListener5 = new BtnSelected("5");
	BtnSelected btnListener6 = new BtnSelected("6");

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		//获取xml中各单选按钮
		btn1 = (RadioButton) findViewById(R.id.bnA);
		btn2 = (RadioButton) findViewById(R.id.bnB);
		btn3 = (RadioButton) findViewById(R.id.bnC);
		btn4 = (RadioButton) findViewById(R.id.bnD);
		btn5 = (RadioButton) findViewById(R.id.bnE);
		btn6 = (RadioButton) findViewById(R.id.bnF);
		grp1 = (RadioGroup) findViewById(R.id.radiogrp1);
		grp2 = (RadioGroup) findViewById(R.id.radiogrp2);
		//为每个RadioButton设置监听器
		btn1.setOnClickListener(btnListener1);
		btn2.setOnClickListener(btnListener2);
		btn3.setOnClickListener(btnListener3);
		btn4.setOnClickListener(btnListener4);
		btn5.setOnClickListener(btnListener5);
		btn6.setOnClickListener(btnListener6);
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}

效果图:

时间: 2024-11-04 15:57:56

多行列单选按钮组RadioButton的实现的相关文章

多组(个数不定)name不同的单选按钮组的生成

最近在用jquery的datatable做项目,期间遇到一个需要生成多组单选按钮组的问题,且每一个单选按钮组的name均不相同,当然就想到用循环 去生成这些单选按钮组.生成单选按钮组本身没有任何问题,不过,当再次刷新列表界面时,生成的单选按钮组的name的下标就会变化.想要让循环变量从0开 始再进行循环,此时需要用到datatable的两个属性:preDrawCallback(刷新之前调用)和drawCallback(刷新之后调 用).示例代码如下: $(function () { var ta

asp.net 微信企业号办公系统-表单设计-单选按钮组

单选按钮组即:<input type='checkbox'/>控件: 绑定字段:与数据表的某个字段绑定. 数据源: 1.数据字典:在下面字段项中选择对应在数据字典项. 2.自定义:自己输入字符串表达式,格式:选项文本1,选项值1;选项文本2,选项值2 3.sql语句:根据一个sql语句查询出来的列有作为选项,查询结果第一个字段为文本,第二个字段为值,如果只有一个字段则文本和值相同. 默认值:为选项设置一个默认选定项. 事件:与文本框事件相同.

radio单选按钮组操作

radio单选按钮组操作与checkbox复选组操作不同, 因为在一组单选按钮中, 你只要选择了其中一个(表现为checked=ture), 那么其他按钮会自动设置为fasle, 这里不留意就会产生bug, 关键是要搞清楚流程的控制. 比如现在有一个需求是通过一个toggle开关来动态切换两个按钮: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"&g

.NET开源工作流RoadFlow-表单设计-单选按钮组

单选按钮组即:<input type='checkbox'/>控件: 绑定字段:与数据表的某个字段绑定. 数据源: 1.数据字典:在下面字段项中选择对应在数据字典项. 2.自定义:自己输入字符串表达式,格式:选项文本1,选项值1;选项文本2,选项值2 3.sql语句:根据一个sql语句查询出来的列有作为选项,查询结果第一个字段为文本,第二个字段为值,如果只有一个字段则文本和值相同. 默认值:为选项设置一个默认选定项. 事件:与文本框事件相同.

Spring MVC-表单(Form)标签-单选按钮(RadioButton)示例(转载实践)

以下内容翻译自:https://www.tutorialspoint.com/springmvc/springmvc_radiobutton.htm 说明:示例基于Spring MVC 4.1.6. 以下示例说明如何在使用Spring Web MVC框架的表单中使用RadioButton.首先,让我们使用Eclipse IDE,并按照以下步骤使用Spring Web Framework开发基于动态窗体的Web应用程序: 步骤 描述 1 创建一个名为HelloWeb的项目,在一个包com.tuto

单选按钮(RadioButton)

一:RadioButton的相关属性: 1.Activity //单选按钮 public class RadioButtonActivity extends Activity { private Context context; private RadioGroup sexRadioGroup; private RadioButton maleRadioButton; private RadioButton femaleRadioButton; private RadioButton sexRa

Jquery 获得单选按钮组中选中的值

HTML 部分 1 <label><input type="radio" name="RadioGroup1" class="RadioGroup1" value="male" />男</label> 2   3 <label><input type="radio" name="RadioGroup1" class="Rad

jquery 取的单选按钮组的值

<input type=”radio” name=”wholesale_one” id=”wholesale_one” value=”1″ />1箱起批 <input type=”radio” name=”wholesale_one” id=”wholesale_one” value=”2″ />2箱起批 <input type=”radio” name=”wholesale_one” id=”wholesale_one” value=”3″ />3箱起批 var v_

miniui搜索单选按钮组-时间选择框验证-下拉框实现

页面代码: <div role="row"> <div role="control" label="姓名"> <input id="search_name" class="mini-textbox" emptyText="请输入姓名" bind="dataBean.name" /> </div> <div role