安卓10 Button颜色无法改变

起因

第二个小项目,将安卓版本升到10,结果在自定义Button点击效果时,自定义的颜色根本没有显示,看了很多帖子,都没有用,最后发现是安卓版本的问题。

问题代码

先上代码:
自定义的xml文件


<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    
    <item android:state_pressed="true">
        <shape android:shape="rectangle">
            <solid android:color="@color/teal_700"/>
            <corners android:radius="35dp"/>
        shape>
    item>

    
    <item android:state_pressed="false">
        <shape android:shape="rectangle">
            <solid android:color="#000000"/>
            <corners android:radius="15dp"/>
        shape>
    item>
selector>

button控件


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/Btn_Play"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:layout_above="@+id/btn_music"
        android:layout_centerHorizontal="true"
        android:clickable="true"
        android:background="@drawable/play_btn"
        android:onClick="OnPlay"
        />
        ...
RelativeLayout>

解决过程

在尝试过比如:

  • 调换state_xxx与color属性的位置
  • 将默认的状态放到各个item的最后

等各种不同的方法之后,终于找到了能解决问题的办法

res/values/themes.xml中的Theme.MaterialComponents.DayNight.DarkActionBar
改为Theme.MaterialComponents.DayNight.Bridge即可
----原帖链接----

<resources xmlns:tools="http://schemas.android.com/tools">
    
    <style name="Theme.MyProgram" parent="Theme.MaterialComponents.DayNight.Bridge">
        ...
    style>
resources>

进阶资料

另附—进阶教程—

你可能感兴趣的:(android,android,studio,移动开发)