亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

蕲春县| 鱼台县| 崇礼县| 博乐市| 米林县| 施甸县| 雅江县| 东乡| 揭阳市| 册亨县| 民县| 嘉峪关市| 兰西县| 富源县| 双柏县| 临西县| 内黄县| 萨嘎县| 来宾市| 柯坪县| 宿迁市| 蒙山县| 鱼台县| 仪征市| 永泰县| 镶黄旗| 北碚区| 吴旗县| 井研县| 武平县| 淮滨县| 北辰区| 称多县| 南漳县| 瑞昌市| 贵南县| 磐安县| 阿勒泰市| 四会市| 阜新市| 璧山县|