zoukankan      html  css  js  c++  java
  • Android checkBox

    checkBox
         状态:选中(true),未选中(false)
         属性:
              checked="true/false";
    private CheckBox  checkbox ;
            @Override
            protected void onCreate(Bundle savedInstanceState) {
                   super.onCreate(savedInstanceState);
                  setContentView(R.layout. activity_main);
                   checkbox=(CheckBox) findViewById(R.id. checkbox);
                   //通过设置checkbox的监听事件来对checkbox是不是被选中。
                   //new一个匿名的内部类
                   checkbox.setOnCheckedChangeListener( new OnCheckedChangeListener() {
                          @Override
                          public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                                // 通过onCheckedChanged来监听当前的 checkbox是否被选中
                                if(isChecked){
                                      String text=checkbox.getText().toString();
                                      Log. i("tag", text );
                               }
                         }
                  });
           }
     
     
     <CheckBox
            android:checked ="true"
            android:id="@+id/checkBox1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="CheckBox" />
    stareblankly.cn
  • 相关阅读:
    SSD3 MultipleChoice Quiz 3
    vivizhyy 喜欢 win7 任务栏的地方
    win7 蓝屏事件
    win7 窗口靠近屏幕边缘时……
    写 SSD3 遇见很 囧 的事情
    用上 win7 了
    win7 快捷键
    SSD3 : MultipleChoice Quiz 4
    EasyUI——常见用法总结
    JQuery——那些当时我想不到的知识点
  • 原文地址:https://www.cnblogs.com/stareblankly/p/4829243.html
Copyright © 2011-2022 走看看