Android-CheckBox多項選擇Demo

來源:互聯網
上載者:User

標籤:

代碼

package com.lxt008;import com.lxt008.R;import android.app.Activity;import android.os.Bundle;import android.view.Gravity;import android.view.View;import android.widget.Button;import android.widget.CheckBox;import android.widget.CompoundButton;import android.widget.TextView;import android.widget.Toast;public class Activity01 extends Activity{    //用來顯示題目    TextView    m_TextView1;    //“提交按鈕”    Button        m_Button1;    //4個多選項    CheckBox    m_CheckBox1;    CheckBox    m_CheckBox2;    CheckBox    m_CheckBox3;    CheckBox    m_CheckBox4;        /** Called when the activity is first created. */    @Override    public void onCreate(Bundle savedInstanceState)    {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        m_TextView1 = (TextView) findViewById(R.id.TextView1);        m_Button1 = (Button) findViewById(R.id.button1);        /* 取得每個CheckBox對象 */        m_CheckBox1 = (CheckBox) findViewById(R.id.CheckBox1);        m_CheckBox2 = (CheckBox) findViewById(R.id.CheckBox2);        m_CheckBox3 = (CheckBox) findViewById(R.id.CheckBox3);        m_CheckBox4 = (CheckBox) findViewById(R.id.CheckBox4);        //對每個選項設定事件監聽        m_CheckBox1.setOnCheckedChangeListener(new CheckBox.OnCheckedChangeListener() {            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)            {                if(m_CheckBox1.isChecked())                {                    DisplayToast("你選擇了:"+m_CheckBox1.getText());                }            }        });        ////////////////////        m_CheckBox2.setOnCheckedChangeListener(new CheckBox.OnCheckedChangeListener() {                        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)            {                if(m_CheckBox2.isChecked())                {                    DisplayToast("你選擇了:"+m_CheckBox2.getText());                }            }        });        /////////////////        m_CheckBox3.setOnCheckedChangeListener(new CheckBox.OnCheckedChangeListener() {                        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)            {                if(m_CheckBox3.isChecked())                {                    DisplayToast("你選擇了:"+m_CheckBox3.getText());                }            }        });        ////////////////        m_CheckBox4.setOnCheckedChangeListener(new CheckBox.OnCheckedChangeListener() {                        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)            {                if(m_CheckBox4.isChecked())                {                    DisplayToast("你選擇了:"+m_CheckBox4.getText());                }            }        });        //對按鈕設定事件監聽        m_Button1.setOnClickListener(new Button.OnClickListener() {            public void onClick(View v)            {                int num = 0;                if(m_CheckBox1.isChecked())                {                    num++;                }                if(m_CheckBox2.isChecked())                {                    num++;                }                if(m_CheckBox3.isChecked())                {                    num++;                }                if(m_CheckBox4.isChecked())                {                    num++;                }                DisplayToast("謝謝參與!你一共選擇了"+num+"項!");            }        });    }        /* 顯示Toast  */    public void DisplayToast(String str)    {        Toast toast = Toast.makeText(this, str, Toast.LENGTH_SHORT);        //設定toast顯示的位置        toast.setGravity(Gravity.TOP, 0, 220);        //顯示該Toast        toast.show();    }}

 

布局檔案

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    ><TextView        android:id="@+id/TextView1"    android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:text="@string/hello"    /><CheckBox  android:id="@+id/CheckBox1"  android:layout_width="fill_parent"  android:layout_height="wrap_content"  android:text="@string/CheckBox1"></CheckBox><CheckBox  android:id="@+id/CheckBox2"  android:layout_width="fill_parent"  android:layout_height="wrap_content"  android:text="@string/CheckBox2"></CheckBox><CheckBoxandroid:id="@+id/CheckBox3"android:layout_width="fill_parent"android:layout_height="wrap_content"android:text="@string/CheckBox3"></CheckBox><CheckBoxandroid:id="@+id/CheckBox4"android:layout_width="fill_parent"android:layout_height="wrap_content"android:text="@string/CheckBox4"></CheckBox>    <Button      android:id="@+id/button1"      android:layout_width="wrap_content"      android:layout_height="wrap_content"      android:text="提交"    >    </Button></LinearLayout>

 

Android-CheckBox多項選擇Demo

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.