91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

android基礎三之CheckBox

發布時間:2020-07-03 03:40:13 來源:網絡 閱讀:314 作者:小石頭llx 欄目:移動開發
//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>

    <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);
    } 
   }
  });
 }

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

钟祥市| 靖江市| 聂荣县| 措美县| 阳江市| 阿拉善右旗| 天水市| 周至县| 永济市| 云南省| 格尔木市| 永和县| 灵宝市| 岐山县| 库尔勒市| 土默特左旗| 湛江市| 吕梁市| 涿州市| 成安县| 饶阳县| 高平市| 出国| 博客| 临潭县| 全州县| 德安县| 阳高县| 元谋县| 远安县| 新巴尔虎右旗| 崇阳县| 涿州市| 宣汉县| 镇赉县| 西城区| 阳东县| 秀山| 玉山县| 略阳县| 潼关县|