我正在尝试创建一个ImageButton
,它可以在按下后改变图标颜色。我想在我的XML文件中这样做。我有以下代码:
...
<ImageButton
android:id="@+id/stop_button"
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@drawable/stop_icon"
android:background="@drawable/stop_button"
android:tint="@color/ship_cove"
app:layout_constraintBottom_toTopOf="@id/bottom_icon_guideline"
app:layout_constraintLeft_toRightOf="@id/start_icon_guideline"
app:layout_constraintRight_toLeftOf="@id/end_icon_guideline"
app:layout_constraintTop_toBottomOf="@id/mediatop_icon_guideline" />
下面是我的@drawable/stop_button.xml
文件内容:
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/cornflower_blue">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/oxford_blue" />
<corners android:radius="8dp" />
</shape>
</item>
</ripple>
如前所述,我的目的是在按下stop_button
后更改stop_icon
色调,但我不知道如何才能做到这一点。有人能帮助我吗?
注意:如果我的按钮没有被按下,我想要我的颜色为@color/ship_cove
的stop_icon
。如果是,我想要颜色为@color/mirage
。
1条答案
按热度按时间k10s72fa1#
不要使用
color
,而是使用按下状态建立颜色selector
。并使用这个
selector
作为图标的颜色。其余的应该由系统来取。