不同主题或风格的不同图像
我有活动 A 和活动 B。它们都使用相同的布局,但有不同的主题。现在定义不同的属性,例如 textColor 是这样完成的,
<item name="android:textColor">#00FF00</item>
但我想做一些不同的事情。我想要为“ImageView01”元素提供不同的图像,
<ImageView android:layout_width="wrap_content" android:id="@+id/ImageView01" android:background="@drawable/attachment1" android:layout_height="wrap_content"></ImageView>
“ImageView01”存在于活动 A 和 B 中。但我希望为 A 中的元素“ImageView01”提供不同的图像,为活动 B 中的元素“ImageView01”提供不同的图像
。这有可能吗?
I have activity A and activity B. They both use the the same layout but they have different theme. Now defining different properties for example textColor is done like this
<item name="android:textColor">#00FF00</item>
but I want to do something different. I want to have different images for "ImageView01" element
<ImageView android:layout_width="wrap_content" android:id="@+id/ImageView01" android:background="@drawable/attachment1" android:layout_height="wrap_content"></ImageView>
the "ImageView01" is present in activity A and B. but I want to have different image for element "ImageView01" in A and different image for element "ImageView01" in activity B.
is this possible at all ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 inResume() 方法中,在 Activity A:
和 Activity B 中
In your inResume() methods have in Activity A:
and in Activity B