要為自定義的CompoundButton添加漣漪效果,可以按照以下步驟進(jìn)行:
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/ripple_effect_color">
<item android:id="@android:id/mask">
<shape android:shape="oval">
<solid android:color="@android:color/white" />
</shape>
</item>
</ripple>
上述代碼中,ripple_effect_color
為漣漪效果的顏色,可以根據(jù)自己的需求進(jìn)行調(diào)整。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<CheckBox
android:id="@+id/custom_checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ripple_effect"
... />
<!-- 其他布局代碼 -->
</RelativeLayout>
在上述代碼中,將漣漪效果的drawable文件ripple_effect
設(shè)置為CheckBox的背景。
CheckBox customCheckbox = findViewById(R.id.custom_checkbox);
customCheckbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
// 處理選中狀態(tài)下的漣漪效果
buttonView.setBackgroundResource(R.drawable.ripple_effect);
} else {
// 處理未選中狀態(tài)下的漣漪效果
buttonView.setBackgroundResource(0);
}
}
});
在上述代碼中,當(dāng)CompoundButton的選中狀態(tài)改變時(shí),根據(jù)isChecked的值來處理漣漪效果。如果被選中,設(shè)置為漣漪效果的drawable文件;如果未被選中,設(shè)置為null或者0。
這樣,就可以為自定義的CompoundButton添加漣漪效果了。