我希望在ImageView
转为" true"时更改boolean
。在这种情况下,我想改变正常的星星"到了黄色的星星"万一用户需要一定的经验。
我实际上使用ImageButton
有类似的代码。这会更改按下按钮时的图像,但会返回原始图像。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/star_normal"
android:state_pressed="true" />
<item android:drawable="@drawable/star_yellow" />
</selector>
和
<ImageButton
android:layout_width="@dimen/_48sdp"
android:layout_height="@dimen/_48sdp"
android:id="@+id/star"
android:layout_weight="1"
android:layout_marginLeft="@dimen/_15sdp"
app:srcCompat="@drawable/star/>
如何在布局保存位置,dp没有丢失格式的情况下替换ImageView
。不使用按钮,用户不应该自己更改图像。
答案 0 :(得分:0)
不是选择器的粉丝所以我会这样编程:
if (boolean){
imageView.setImageResource(R.drawable.star_yellow);
}
要避免调整大小,请像这样指定ImageView xml
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/img"
android:src="@drawable/star_normal"
android:maxHeight="48dp"
android:maxWidth="48dp"/>