美文网首页
android 按钮点击样式

android 按钮点击样式

作者: 刘坤林 | 来源:发表于2020-05-30 12:56 被阅读0次

一、水波纹点击效果,包含2个文件

文件1:style_btn_click.xml

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
 android:color="@color/lightYellow" tools:ignore="NewApi">
 <item android:drawable="@drawable/style_btn_click_normal" />
</ripple>

文件2:style_btn_click_normal.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
 <solid android:color="@color/mainColor" />
 <corners android:radius="3dp" />
</shape>

使用方法:

<Button 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/style_btn_click"  />

二、普通点击变色样式

style_normal_btn_click.xml

使用方法:

```

<Button      

    android:layout_width="wrap_content"    

    android:layout_height="wrap_content"    

    android:background="@drawable/style_normal_btn_click "  />

```

或者可以使用工具类样式工具类

相关文章

网友评论

      本文标题:android 按钮点击样式

      本文链接:https://www.haomeiwen.com/subject/pzmczhtx.html