• 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
  • 相关阅读:
    html css div img垂直居中
    jquery 多选框 checkbox 获取选中的框
    css 滚动条样式
    css 翻牌 翻转 3d翻转 特效
    css强制不换行 多出的字省略号
    jquery获取元素坐标获取鼠标坐标
    鸡汤 咯咯
    <bean> 中配置详解 </bean>
    正则表达式的囧
    我的天$删除注册表$安装mysql最后一步不能启动服务的解决办法
  • 原文地址:https://www.cnblogs.com/stareblankly/p/4829243.html
Copyright © 2020-2023  润新知