安卓编程如何在点击确定按钮时把多选框跟单选框的内容用提示框显示出来
3个回答
展开全部
写一个提示框类继承dialog ,
在oncreate()方法下 加入 this.setContentView(R.layout.dialog_reject);
R.layout.dialog_reject.xml就是提示框的布局文件,布局文件里加入你的多选框和单选框,这样就可以了。这是自定义dialog ,使用方法和dialog一样。 题主可能习惯使用AlertDialog , 直接用系统的AlertDialog 虽然方便,但功能和样式受限制,所以一般工作中都会使用自定义的dialog。
在oncreate()方法下 加入 this.setContentView(R.layout.dialog_reject);
R.layout.dialog_reject.xml就是提示框的布局文件,布局文件里加入你的多选框和单选框,这样就可以了。这是自定义dialog ,使用方法和dialog一样。 题主可能习惯使用AlertDialog , 直接用系统的AlertDialog 虽然方便,但功能和样式受限制,所以一般工作中都会使用自定义的dialog。
展开全部
你好:
给按钮绑定监听事件,获取复选框的值
再把得到的值传给提示框就可以了.
给按钮绑定监听事件,获取复选框的值
再把得到的值传给提示框就可以了.
追问
能给个具体的例子么
追答
你要工程?还是activity的代码?
随便写了个Demo
public class MainActivity extends Activity {
private CheckBox box1,box2,box3 ;//多选
private Button btn;//提取按钮
private RadioGroup group;//单选按钮组
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//根据id获取组件
group = (RadioGroup) this.findViewById(R.id.radioGroup1);
box1 = (CheckBox) this.findViewById(R.id.checkBox1);
box2 = (CheckBox) this.findViewById(R.id.checkBox2);
box3 = (CheckBox) this.findViewById(R.id.checkBox3);
btn = (Button) this.findViewById(R.id.btn);
btn.setOnClickListener(new OnClickListener() {//点击事件
@Override
public void onClick(View arg0) {
//单选的
for (int i = 0; i < group.getChildCount(); i++) {
RadioButton r = (RadioButton) group.getChildAt(i);
if(r.isChecked()){
//循环判断哪个选中
}
}
//多选的
if(box1.isChecked()){
//爱好1选中
}else if(box2.isChecked()){
//爱好2选中
}else if(box3.isChecked()){
//爱好3选中
Toast.makeText(MainActivity.this, box3.getText(), Toast.LENGTH_LONG).show();
}
}
});
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你好楼主
补充下面的代码,实现在点击提交按钮后,弹出警告窗口显示:你选择了第几个单选框。
<html>
<body>
<script>
function foo()
}
</script>
<body>
<form name="form1">
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="submit" onclick=" foo();"/>
</form>
</body>
</html>
希望可以帮助到你
谢谢采纳
补充下面的代码,实现在点击提交按钮后,弹出警告窗口显示:你选择了第几个单选框。
<html>
<body>
<script>
function foo()
}
</script>
<body>
<form name="form1">
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="radio" name="radioGroup"/>
<input type="submit" onclick=" foo();"/>
</form>
</body>
</html>
希望可以帮助到你
谢谢采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询