最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android控件之CheckBox、RadioButton用法實(shí)例分析

 更新時(shí)間:2015年09月14日 10:21:04   作者:Ruthless  
這篇文章主要介紹了Android控件之CheckBox、RadioButton用法,以實(shí)例形式較為詳細(xì)的分析了CheckBox和RadioButton實(shí)現(xiàn)復(fù)選按鈕及單選按鈕功能的相關(guān)技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了Android控件之CheckBox、RadioButton用法。分享給大家供大家參考。具體如下:

CheckBox和RadioButton控件都只有選中和未選中狀態(tài),不同的是RadioButton是單選按鈕,需要編制到一個(gè)RadioGroup中,同一時(shí)刻一個(gè)RadioGroup中只能有一個(gè)按鈕處于選中狀態(tài)。

以下為CheckBox和RadioButton常用方法及說明

以下為單選按鈕和復(fù)選按鈕的使用方法

目錄結(jié)構(gòu):

main.xml布局文件:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:scrollbars="vertical">
  <LinearLayout android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <!-- RadioButton控件演示 -->
    <ImageView android:id="@+id/imageView01"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:src="@drawable/bulb_on" 
      android:layout_gravity="center_horizontal" />
    <RadioGroup android:id="@+id/radioGroup"
      android:orientation="horizontal"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_horizontal">
      <RadioButton android:id="@+id/on"
        android:text="開燈"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:checked="true" />
      <RadioButton android:id="@+id/off"
        android:text="關(guān)燈"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
    </RadioGroup>
    <!-- CheckBox控件演示 -->
    <ImageView android:id="@+id/imageView02"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:src="@drawable/bulb_on" 
      android:layout_gravity="center_horizontal" />
    <CheckBox android:id="@+id/checkBox"
      android:text="開燈"
      android:checked="true"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_horizontal" />
  </LinearLayout>
</ScrollView>

CbRbActivity類:

package com.ljq.activity;
import android.app.Activity;
import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.ImageView;
import android.widget.RadioButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
public class CbRbActivity extends Activity {
  private ImageView imageView01=null;
  private ImageView imageView02=null;
  private CheckBox checkBox=null;
  private RadioButton on=null;//開燈
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    imageView01=(ImageView)findViewById(R.id.imageView01);
    imageView02=(ImageView)findViewById(R.id.imageView02);
    checkBox=(CheckBox)findViewById(R.id.checkBox);
    on=(RadioButton)findViewById(R.id.on);
    on.setOnCheckedChangeListener(listener);
    checkBox.setOnCheckedChangeListener(listener);
  }
  OnCheckedChangeListener listener=new OnCheckedChangeListener(){
    public void onCheckedChanged(CompoundButton buttonView,
        boolean isChecked) {
      if(buttonView instanceof RadioButton){
        imageView01.setImageResource(isChecked?R.drawable.bulb_on:R.drawable.bulb_off);
      }else if(buttonView instanceof CheckBox){
        checkBox.setText(isChecked?"開燈":"關(guān)燈");
        imageView02.setImageResource(isChecked?R.drawable.bulb_on:R.drawable.bulb_off);
      }
    }
  };
}

運(yùn)行結(jié)果:

希望本文所述對(duì)大家的Android程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

皋兰县| 和顺县| 突泉县| 济宁市| 曲阳县| 云林县| 革吉县| 武平县| 滁州市| 湘潭县| 腾冲县| 呼伦贝尔市| 达尔| 庆元县| 蒙自县| 新巴尔虎右旗| 中牟县| 双柏县| 文山县| 台湾省| 山丹县| 柘荣县| 通化县| 三原县| 彩票| 永登县| 徐汇区| 弥渡县| 宝应县| 东阿县| 德庆县| 筠连县| 芦溪县| 揭东县| 项城市| 遵化市| 会同县| 扎鲁特旗| 伊川县| 张家界市| 嘉黎县|