首页 > 代码库 > 求助攻,怎么获取AlertDialog的rediobutton值
求助攻,怎么获取AlertDialog的rediobutton值
问题描述
获取AlertDialog的rediobutton值
比如我现在的默认值为“自动”,在不点击按钮的不出现这个AlertDialog的时候,在外部的textview中获取到默认值。
private String[] huazhi=new String[]{"自动","普通","精细","超精细"};
Dialog log1 = new AlertDialog.Builder(SetActivity.this)
.setSingleChoiceItems(huazhi, 0, new DialogInterface.OnClickListener()
怎么把这个默认值显示在Acticity中的textview中。
解决方案1
获取AlertDialog的rediobutton值
比如我现在的默认值为“自动”,在不点击按钮的不出现这个AlertDialog的时候,在外部的textview中获取到默认值。
private String[] huazhi=new String[]{"自动","普通","精细","超精细"};
Dialog log1 = new AlertDialog.Builder(SetActivity.this)
.setSingleChoiceItems(huazhi, 0, new DialogInterface.OnClickListener()
怎么把这个默认值显示在Acticity中的textview中。
解决方案1
public void onClick(DialogInterface dialog,int which) { if (which > 0 ) { //表示选的是数据 String tx = huazhi[which]; TextView t = (TextView) findViewById(mytextid); t.setText(tx ); } }
求助攻,怎么获取AlertDialog的rediobutton值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。