請問xml文件中設置的屬性為srcCompat的圖片在事件中用什么方法可以切換圖片,用了setBackgroundResource不能切換圖片,會重疊。android studio.
如題
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
? ?mImageView.setBackgroundResource(isChecked?R.mipmap.ic_launcher_round:R.mipmap.ic_launcher);
}
<ImageView
? ?android:id="@+id/imageView"
? ?android:layout_width="368dp"
? ?android:layout_height="495dp"
? ?app:srcCompat="@mipmap/ic_launcher"
? ?tools:layout_editor_absoluteX="8dp"
? ?android:layout_marginTop="8dp"
? ?app:layout_constraintTop_toBottomOf="@+id/toggleButton"/>
點擊開關后圖片會重疊,不是切換圖片。
2017-05-31
這個屬于返回值的問題。重疊,說明當前的圖片沒有銷毀,如圖