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