您好,登錄后才能下訂單哦!
編寫
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>
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" //這里使用 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("執行開啟語音"); } } });
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。