android:id="@+id/sex"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/male"
android:text="男"/>
<RadioButton
android:id="@+id/female"
android:text="女"/>
</RadioGroup>
获取数据内容示例:
thissex=(RadioGroup) superfindViewById(Ridsex);thismale=(RadioButton) superfindViewById(Ridmale);
thisfemale=(RadioButton) superfindViewById(Ridfemale);
thissexsetOnCheckedChangeListener(new OnCheckedChangeListenerImp());
private class OnCheckedChangeListenerImp implements OnCheckedChangeListener{
public void onCheckedChanged(RadioGroup group, int checkedId) {
String temp=null;
if(MainActivitythismalegetId()==checkedId){
temp="男";
}
else if(MainActivitythisfemalegetId()==checkedId){
temp="女";
}
RadioButton是android开发中常见的一种控件,而使用简单,通常与RadioGroup一起使用。RadioButton表示单个圆形单选框,而RadioGroup是可以容纳多个RadioButton的容器。
代码如下:
function doGender(gender) {
if (gender == "男") {
gel("radionan")checked = true;
} else {
gel("radionv")checked = true;
}
}
扩展资料
JS基础代码:
//定义数组
var pageIds = new Array();
pageIdspush('A');
数组长度
pageIdslength;
//shift:删除原数组第一项,并返回删除元素的值;如果数组为空则返回undefined
var a = [1,2,3,4,5];
var b = ashift(); //a:[2,3,4,5] b:1
//unshift:将参数添加到原数组开头,并返回数组的长度
var a = [1,2,3,4,5];
var b = aunshift(-2,-1); //a:[-2,-1,1,2,3,4,5] b:7
//注:在IE60下测试返回值总为undefined,FF20下测试返回值为7,所以这个方法的返回值不可靠,需要用返回值时可用splice代替本方法来使用。
<div id="inputs">
<input type="radio" name="aa" value="1">
<input type="radio" name="aa" value="2">
<input type="radio" name="aa" value="3">
</div>
<script>
var current="0";//用来标记选择了哪个
$('#inputs>input')on('click',function(){
current=thisvalue;
consolelog(current);//测试输出用
});
</script>
以上就是关于android 编程中怎样从单选按钮获取数据全部的内容,包括:android 编程中怎样从单选按钮获取数据、如何用js实现将当前点击的单选按钮变为选中状态、请教如何实现jquery绑定单选按钮单击事件,并获取所单击单选按钮的值等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)