AndroidStudio监听Radiogroup并消息提⽰选中的选项布局界⾯代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="schemas.android/apk/res/android"
xmlns:tools="schemas.android/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<RadioGroup
android:id="@+id/sex"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android radiogroupandroid:orientation="horizontal">
<RadioButton
android:id="@+id/sex1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="男" />
<RadioButton
android:id="@+id/sex2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginLeft="50dp"
android:text="⼥" />
</RadioGroup>
</RelativeLayout>
java代码:
public class MainActivity extends AppCompatActivity {
private RadioGroup sexgp;
private String selSext;
@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
//获取radiongroup对象
sexgp = (RadioGroup) findViewById(R.id.sex);
//通过radiogroup的setoncheckedlistener⽅法注册监听事件
/
/在监听事件中创建oncheckedlistener 在重写oncheckedchanged⽅法
sexgp.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
//获取被选中的radiobutton的id
RadioButton rcheck = (RadioButton) findViewById(checkedId);
//获取
String checkText = Text().toString();
Toast.makeText(MainActivity.this, "您选中的是:" + checkText, Toast.LENGTH_SHORT).show();
}
});
}
}
模拟器模拟效果:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。