//activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context="com.vincentlin.checkbox.MainActivity" > <CheckBox android:id="@+id/checkBox1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/basketball" /> </LinearLayout>
strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
定邊網站制作公司哪家好,找成都創新互聯!從網頁設計、網站建設、微信開發、APP開發、成都響應式網站建設公司等網站項目制作,到程序開發,運營維護。成都創新互聯從2013年開始到現在10年的時間,我們擁有了豐富的建站經驗和運維經驗,來保證我們的工作的順利進行。專注于網站建設就選成都創新互聯。
<string name="app_name">CheckBox</string>
<string name="hello_world">Hello world!</string>
<string name="action_settings">Settings</string>
<string name="basketball">籃球</string>
</resources>
MainActivity.java
package com.vincentlin.checkbox; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.CompoundButton.OnCheckedChangeListener; public class MainActivity extends Activity { private CheckBox checkbox; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //初始化checkbox checkbox = (CheckBox) findViewById(R.id.checkBox1); //通過設置checkbox的監聽事件來對checkbox是不是被選中 checkbox.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { //通過onCheckedChanged來監聽當前的checkBox是否被選中 Log.i("tag", isChecked+""); if (isChecked) { //獲得checkBox的文本內容 String text = checkbox.getText().toString(); Log.i("tag", text); } } }); } }
分享文章:android基礎三之CheckBox
瀏覽地址:http://vcdvsql.cn/article30/pephso.html
成都網站建設公司_創新互聯,為您提供域名注冊、網頁設計公司、手機網站建設、微信公眾號、云服務器、做網站
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯