android radio(单选框) 两个单选框绑定

来源:互联网 发布:什么小说软件免费 编辑:程序博客网 时间:2024/06/07 04:30

在程序中会用到监听事件,监听到一个单选框被点击后,另一个单选框也会被选上。当然,这两个点选框不是在一组中的。

同样,在MainActivity.java文件中:

package com.yx.radio;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.CompoundButton;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;

public class MainActivity extends Activity {

 private RadioGroup radioGroup;
 private RadioButton femaleButton;
 private RadioButton maleButton;
 private RadioGroup radioGroup2;
 private RadioButton femaleButton2;
 private RadioButton maleButton2;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  radioGroup = (RadioGroup)findViewById(R.id.radioGroupId);
  femaleButton = (RadioButton)findViewById(R.id.femaleButtonId);
  maleButton = (RadioButton)findViewById(R.id.maleButtonId);
  
  radioGroup2 = (RadioGroup)findViewById(R.id.radioGroup2Id);
  femaleButton2 = (RadioButton)findViewById(R.id.femaleButton2Id);
  maleButton2 = (RadioButton)findViewById(R.id.maleButton2Id);
  RadioGroupListener rgl = new RadioGroupListener();
  radioGroup.setOnCheckedChangeListener(rgl);
  radioGroup2.setOnCheckedChangeListener(rgl);
 }
 
 class RadioGroupListener implements OnCheckedChangeListener{//设置监听,需要实现OnCheckedChangeListener接口(这个应该是内部类)
  @Override
  public void onCheckedChanged(RadioGroup arg0, int arg1) {
   if(arg1 == femaleButton.getId()){
    femaleButton2.setChecked(true);
   }
   else if(arg1 == maleButton.getId()){
    maleButton2.setChecked(true);
   }
   else if(arg1 == femaleButton2.getId()){
    femaleButton.setChecked(true);
   }
   else if(arg1 == maleButton2.getId()){
    maleButton.setChecked(true);
   }
  }
 }

 @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;
 }

}

在activity_main.xml文件中:

<LinearLayout 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"
    android:orientation="vertical"
    tools:context=".MainActivity" >

    <RadioGroup
        android:id="@+id/radioGroupId"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <RadioButton
            android:id="@+id/femaleButtonId"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="female"
            />
         <RadioButton
            android:id="@+id/maleButtonId"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="male"
            />
    </RadioGroup>
   
    <RadioGroup
        android:id="@+id/radioGroup2Id"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <RadioButton
            android:id="@+id/femaleButton2Id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="female2"
            />
         <RadioButton
            android:id="@+id/maleButton2Id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="male2"
            />
    </RadioGroup>

</LinearLayout>

 

 

原创粉丝点击