要為自定義的CompoundButton添加漣漪效果,可以按照以下步驟進行:
<?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
為漣漪效果的顏色,可以根據自己的需求進行調整。
<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
設置為CheckBox的背景。
CheckBox customCheckbox = findViewById(R.id.custom_checkbox);
customCheckbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
// 處理選中狀態下的漣漪效果
buttonView.setBackgroundResource(R.drawable.ripple_effect);
} else {
// 處理未選中狀態下的漣漪效果
buttonView.setBackgroundResource(0);
}
}
});
在上述代碼中,當CompoundButton的選中狀態改變時,根據isChecked的值來處理漣漪效果。如果被選中,設置為漣漪效果的drawable文件;如果未被選中,設置為null或者0。
這樣,就可以為自定義的CompoundButton添加漣漪效果了。