Android開(kāi)發(fā)中CheckBox的簡(jiǎn)單用法示例
本文實(shí)例講述了Android開(kāi)發(fā)中CheckBox的簡(jiǎn)單用法。分享給大家供大家參考,具體如下:
CheckBox是一種在界面開(kāi)發(fā)中比較常見(jiàn)的控件,Android中UI開(kāi)發(fā)也有CheckBox,簡(jiǎn)單的說(shuō)下它的使用,每個(gè)CheckBox都要設(shè)置監(jiān)聽(tīng),設(shè)置的監(jiān)聽(tīng)為CompouButton.OnCheckedChangedListener()。
package com.zhuguangwei;
import android.app.Activity;
import android.os.Bundle;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.TextView;
public class ChkBoxActivity extends Activity {
private TextView myTextView;
private CheckBox myApple;
private CheckBox myOrange;
private CheckBox myBanana;
private CheckBox myWaterMelon;
private CheckBox myStrawBerry;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//通過(guò)ID找到TextView
myTextView = (TextView) findViewById(R.id.myTextView);
//通過(guò)ID找到這幾個(gè)CheckBox
myApple = (CheckBox) findViewById(R.id.Apple);
myOrange = (CheckBox) findViewById(R.id.Orange);
myBanana = (CheckBox) findViewById(R.id.banana);
myWaterMelon = (CheckBox) findViewById(R.id.watermelon);
myStrawBerry = (CheckBox) findViewById(R.id.strawberry);
myApple.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
if(isChecked){
myTextView.append(myApple.getText().toString());
}
else{
if(myTextView.getText().toString().contains("蘋果")){
myTextView.setText(myTextView.getText().toString().replace("蘋果", ""));
}
}
}
});
myOrange.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
if(isChecked){
myTextView.append(myOrange.getText().toString());
}
else{
if(myTextView.getText().toString().contains("橘子")){
myTextView.setText(myTextView.getText().toString().replace("橘子", ""));
}
}
}
});
myBanana.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
if(isChecked){
myTextView.append(myBanana.getText().toString());
}
else{
if(myTextView.getText().toString().contains("香蕉")){
myTextView.setText(myTextView.getText().toString().replace("香蕉", ""));
}
}
}
});
myWaterMelon.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
if(isChecked){
myTextView.append(myWaterMelon.getText().toString());
}
else{
if(myTextView.getText().toString().contains("西瓜")){
myTextView.setText(myTextView.getText().toString().replace("西瓜", ""));
}
}
}
});
myStrawBerry.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// TODO Auto-generated method stub
if(isChecked){
myTextView.append(myStrawBerry.getText().toString());
}
else{
if(myTextView.getText().toString().contains("草莓")){
myTextView.setText(myTextView.getText().toString().replace("草莓", ""));
}
}
}
});
}
}
main.xml文件內(nèi)容為:
<?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/myTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="請(qǐng)選擇你一下你喜歡吃的水果:"
/>
<CheckBox
android:id="@+id/Apple"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="蘋果"
/>
<CheckBox
android:id="@+id/Orange"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="橘子"
/>
<CheckBox
android:id="@+id/banana"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="香蕉"
/>
<CheckBox
android:id="@+id/watermelon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="西瓜"
/>
<CheckBox
android:id="@+id/strawberry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="草莓"
/>
</LinearLayout>
運(yùn)行結(jié)果為:

更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android控件用法總結(jié)》、《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android視圖View技巧總結(jié)》、《Android操作SQLite數(shù)據(jù)庫(kù)技巧總結(jié)》、《Android操作json格式數(shù)據(jù)技巧總結(jié)》、《Android數(shù)據(jù)庫(kù)操作技巧總結(jié)》、《Android文件操作技巧匯總》、《Android編程開(kāi)發(fā)之SD卡操作方法匯總》、《Android資源操作技巧匯總》及《Android開(kāi)發(fā)入門與進(jìn)階教程》
希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。
- Android RecycleView使用(CheckBox全選、反選、單選)
- Android中CheckBox復(fù)選框控件使用方法詳解
- Android開(kāi)發(fā)之CheckBox的簡(jiǎn)單使用與監(jiān)聽(tīng)功能示例
- Android 中CheckBox多項(xiàng)選擇當(dāng)前的position信息提交的示例代碼
- Android中ListView + CheckBox實(shí)現(xiàn)單選、多選效果
- Android實(shí)現(xiàn)炫酷的CheckBox效果
- Android中ListView綁定CheckBox實(shí)現(xiàn)全選增加和刪除功能(DEMO)
- 詳解Android Checkbox的使用方法
- Android中自定義Checkbox組件實(shí)例
- Android CheckBox中設(shè)置padding無(wú)效解決辦法
相關(guān)文章
Android使用 Coroutine + Retrofit打造簡(jiǎn)單的HTTP請(qǐng)求庫(kù)
這篇文章主要介紹了Android使用 Coroutine + Retrofit打造簡(jiǎn)單的HTTP請(qǐng)求庫(kù),幫助大家更好的理解和學(xué)習(xí)使用Android,感興趣的朋友可以了解下2021-03-03
Android PopupWindow 點(diǎn)擊外面取消實(shí)現(xiàn)代碼
這篇文章主要介紹了Android PopupWindow 點(diǎn)擊外面取消實(shí)現(xiàn)代碼,本文直接給出核心實(shí)現(xiàn)代碼,代碼中包含注釋,需要的朋友可以參考下2015-04-04
Android App中制作仿MIUI的Tab切換效果的實(shí)例分享
這篇文章主要介紹了Android App中制作仿MIUI的Tab切換效果的實(shí)例分享,實(shí)現(xiàn)具有跟隨手指滾動(dòng)而滾動(dòng)功能的ViewPagerIndicator,需要的朋友可以參考下2016-04-04
Android GridView實(shí)現(xiàn)滾動(dòng)到指定位置的方法
這篇文章主要介紹了Android GridView實(shí)現(xiàn)滾動(dòng)到指定位置的方法,本文介紹了4個(gè)相關(guān)的方法,分別對(duì)它們做了講解,需要的朋友可以參考下2015-06-06
一文理解Android系統(tǒng)中強(qiáng)指針的實(shí)現(xiàn)
因?yàn)锳ndroid中很多地方代碼是用C++編寫,為了能夠保證C++中指針能夠被正確的釋放,于是Android引入了其實(shí)在C++中已經(jīng)有的智能指針技術(shù)2021-10-10
Android中Listview點(diǎn)贊功能的實(shí)現(xiàn)
最近一段時(shí)間在研究android方面的知識(shí),利用listview實(shí)現(xiàn)點(diǎn)贊功能,下面小編通過(guò)本文給大家介紹下基本思路,需要的朋友可以參考下2016-11-11
Android中ImageView.src設(shè)置圖片拉伸、填滿控件的方法
最近公司有個(gè)需求,要展示客戶公司的企業(yè)形象,用一張圖片放在ImageView中實(shí)現(xiàn),但是發(fā)現(xiàn)圖片并沒(méi)有填滿,而是在上下邊上留出了一點(diǎn)空白,下面這篇文章主要跟大家介紹了Android中ImageView.src設(shè)置圖片拉伸、填滿控件的方法,需要的朋友可以參考下。2017-06-06

