我正在尝试显示一个最喜欢的按钮,它是两个状态(按下/未按下)。根据所选主题(浅色/深色),我想要使用2套图像。
虽然我可以根据主题切换图像,但我不知道如何从代码中获取Url到图像,以便我可以根据按钮状态显示图像。我也试过使用选择器,但我似乎无法在选择器中放置?attr值来按主题切换图像。
样式定义:
<attr name="star_on_image" format="reference"/>
<attr name="star_off_image" format="reference"/>
<style name="LightTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="star_on_image">@drawable/ic_action_important</item>
<item name="star_off_image">@drawable/ic_action_not_important</item>
</style>
<style name="DarkTheme" parent="Theme.AppCompat">
<item name="star_on_image">@drawable/ic_action_dark_important</item>
<item name="star_off_image">@drawable/ic_action_dark_not_important</item>
</style>
按钮定义:
<ImageButton
android:layout_width="@dimen/button_size"
android:layout_height="@dimen/button_size"
android:id="@+id/favorite_button_on"
android:src="?attr/star_off_image"
android:scaleType="center"
android:visibility="gone"
/>
我想从代码中将此图像的src属性切换为“?attr / star_on_image”。 关于如何做到这一点的任何想法?
答案 0 :(得分:2)
使用此:
TypedValue typedValue = new TypedValue();
getTheme().resolveAttribute(R.attr.star_on_image, typedValue, true);
ImageButton star = ((ImageButton)findViewById(R.id.favorite_button_on));
star.setImageResource(typedValue.resourceId);