zoukankan      html  css  js  c++  java
  • 自定义 checkbox 新玩法 ?

    自定义 checkbox 新玩法 ?

    第一步:selector

    编写 drawable/selector_checkbox_voice.xml

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:drawable="@drawable/ic_voice_off" android:state_checked="true"/>
        <item android:drawable="@drawable/ic_voice_on" android:state_checked="false"/>
        <item android:drawable="@drawable/ic_voice_off"/>
    </selector>

    第二步:style

    VoiceCheckboxTheme

    <!--自定义的checkbox-->
    <style name="VoiceCheckboxTheme" parent="@android:style/Widget.CompoundButton.CheckBox">
        <item name="android:button">@drawable/selector_checkbox_voice</item>
    </style>

    第三步:布局文件里

    <CheckBox
        android:id="@+id/cb_voice"
        style="@style/VoiceCheckboxTheme" //这里使用
        android:layout_width="@dimen/dp21"
        android:layout_height="@dimen/dp28"
        android:gravity="center"
        android:layout_marginLeft="@dimen/dp30"
        />

    第四步:效果

    看左边第二个

    //点击前

    //点击后

    你可以监听状态:

    //语音是否关闭
        mCb_Voice.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked){
                    //执行关闭语音
                    MGToast.showToast("执行关闭语音");
                }else {
                    //执行开启语音
                    MGToast.showToast("执行开启语音");
                }
            }
        });
  • 相关阅读:
    ActiveX控件的注册和反注册
    谷歌浏览器调用activex控件方法
    VC 中的ATL ActiveX 和 MFC ActiveX 有什么区别
    DirectX介绍(转)
    最简单的基于FFMPEG的图像编码器(YUV编码为JPEG)(转)
    统计Visual Studio项目的代码行数
    【Sqlite3】sqlite_sequence表(转)
    linuxunix系统下的字符操作
    tif
    字符串截取
  • 原文地址:https://www.cnblogs.com/zhaohongtian/p/6808938.html
Copyright © 2011-2022 走看看