嘗試以下可能是你的作品(這對我的工作)
if(android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
if (image.getDrawable().getConstantState().equals(image.getContext().getDrawable(R.drawable.shadow_round_white).getConstantState())){
image.setVisibility(View.GONE);
}
else{
image.setVisibility(View.VISIBLE);
}
}
else {
if (image.getDrawable().getConstantState().equals(getResources().getDrawable(R.drawable.shadow_round_white).getConstantState())){
image.setVisibility(View.GONE);
}
else{
image.setVisibility(View.VISIBLE);
}
}