CheckBox的用法

每个CheckBox都要有相应的监听,如果有3个CheckBox就要做3个监听。

 

MainActivity.java

package com.example.activity_07;

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

public class MainActivity extends Activity {
 private RadioGroup radioGroup = null;
 private RadioButton female = null;
 private RadioButton male = null;
 private TextView myTextView2 = null;
 private TextView myTextView1 = null;
 private CheckBox swim = null;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  myTextView2 = (TextView)findViewById(R.id.textView2);
  myTextView1 = (TextView)findViewById(R.id.textView1);
  radioGroup = (RadioGroup)findViewById(R.id.radioGroup);
  female = (RadioButton)findViewById(R.id.femaleButton);
  male = (RadioButton)findViewById(R.id.maleButton);

  swim = (CheckBox)findViewById(R.id.swim);
        this.radioGroup.setOnCheckedChangeListener(new myRadioGoupListner());
        swim.setOnCheckedChangeListener(

                   new CompoundButton.OnCheckedChangeListener()

                    {        
                                               public void onCheckedChanged(CompoundButton buttonView,boolean isChecked)

                                                {
                                                           if(isChecked)

                                                          {
                                                                    myTextView2.setText(R.string.swim); 
                                                           }
                                                          else

                                                          {
                                                                    myTextView2.setText(R.string.noswim);
                                                          }
                                                }
                    }                                                           );
          
           
          
         
  
 }//====================================================

  public class myRadioGoupListner implements android.widget.RadioGroup.OnCheckedChangeListener
     {
 
         @Override
         public void onCheckedChanged(RadioGroup group, int checkedId)
         {
               if(female.getId()==checkedId)//========================================================看看区别
               {
                myTextView1.setText(R.string.female);
               }
               else if(male.getId()==radioGroup.getCheckedRadioButtonId())//====================================================
               {
                myTextView1.setText(R.string.male);
               }
               else
               {
                finish();
               }
         }
     };

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

}

 

 

main.xml

==========================================================================================================

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <RadioGroup
        android:id="@+id/radioGroup"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView2"
        android:layout_below="@+id/go"
        android:orientation="vertical" >

        <RadioButton
            android:id="@+id/femaleButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/radioGroup"
            android:layout_below="@+id/radioGroup"
            android:layout_marginTop="64dp"
            android:text="@string/female" />

        <RadioButton
            android:id="@+id/maleButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@+id/femaleButton"
            android:layout_below="@+id/femaleButton"
            android:text="@string/male" />
    </RadioGroup>

    <CheckBox
        android:id="@+id/swim"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView2"
        android:layout_below="@+id/textView2" />

    <CheckBox
        android:id="@+id/read"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView2"
        android:layout_below="@+id/swim" />

    <CheckBox
        android:id="@+id/go"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView2"
        android:layout_below="@+id/read" />

</RelativeLayout>

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值