Android Button按钮点击背景和文字变化操作

 更新时间:2020年08月22日 08:35:24   作者:yuxuehandong  
这篇文章主要介绍了Android Button按钮点击背景和文字变化操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

Android 原生的按钮点击状态是有变化的,但是如果是自己加了一个.png格式的图片为背景色,按钮点击就不会有任何效果,为了达到点击按钮有一闪的效果,我们就需要准备两张图进行切换, 而且文字也要变色,老规矩废话不多说直接上代码:

按钮背景图片放在 drawable/background_button.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

 <item android:drawable="@drawable/bg_press" android:state_pressed="true"/>
 <item android:drawable="@drawable/bg_normal" android:state_enabled="true"/>
 <item android:drawable="@drawable/bg_normal"/>
</selector>

准备两张图片一张为bg_press.png, 一张为 bg_normal.png。

在需要变化的按钮中设置:

   <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:layout_marginRight="50dp"
    android:focusable="false"
    android:gravity="center"
    android:textSize="24px"
    android:text="@string/str_tethering_modify"
    android:background="@drawable/background_button" />

这有背景色变化就解决完了,下面到按钮上的文字了,现在点击按钮按钮上的文字是没有变化的,为了达到按钮文字颜色的变化我们再新建一个xml文件。

按钮颜色变化 drawable/button_color.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

 <item android:state_pressed="true" android:color="#975508"/>
 <item android:state_focused="false" android:state_pressed="false" android:color="#E5960E"/>
 <item android:state_focused="true" android:color="#975508"/>
 <item android:state_focused="false" android:color="#E5960E"/>

</selector>

加入到我们的按钮textColor中

   <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:layout_marginRight="50dp"
    android:focusable="false"
    android:gravity="center"
    android:textSize="24px"
    android:textColor="@drawable/button_color"
    android:text="@string/str_tethering_modify"
    android:background="@drawable/background_button" />

这样直接使用背景和文字就都有点击效果啦,但是如果有这样一个需求,在某些条件下需要再设置按钮文字的颜色button.setTextColor(color),这样设置完后,发现我们按钮上文字点击又没有变化了,我之前试着直接 button.setTextColor(R.drawable.button_color);发现这样是没有任何用处的。这样就需要使用 ColorStateList 来解决,顾名思义,就是定义颜色的状态列表,通过监听按钮不同状态来设置不同的颜色,

老规矩,废话不多说了,直接贴代码:

 /**
  * 按钮点击颜色变化
  */
 private ColorStateList colorStateList;
 colorStateList = (ColorStateList)getResources().getColorStateList(R.drawable.button_color);
 if(xxx){
  button.setTextColor(Color.White);
 }else{
  button.setTextColor(colorStateList);
 }

这样就完美解决了按钮点击状态的变化啦。

补充知识:android studio设置按钮和背景融为一体也就是按钮去除阴影

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage"
style="?android:attr/borderlessButtonStyle" />

以上这篇Android Button按钮点击背景和文字变化操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

相关文章

  • 简述Android中实现APP文本内容的分享发送与接收方法

    简述Android中实现APP文本内容的分享发送与接收方法

    本篇文章主要对Android中实现APP文本内容的分享发送与接收方法进行介绍,相信对大家学习会有很好的帮助,需要的朋友一起来看下吧
    2016-12-12
  • Android显示系统SurfaceFlinger分析

    Android显示系统SurfaceFlinger分析

    本文详细讲解了Android显示系统SurfaceFlinger,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2021-12-12
  • Android 自动判断是电话,网址,EMAIL方法之Linkify的使用

    Android 自动判断是电话,网址,EMAIL方法之Linkify的使用

    本篇文章小编为大家介绍,在Android中 自动判断是电话,网址,EMAIL方法之Linkify的使用。需要的朋友参考下
    2013-04-04
  • Android webview加载H5方法详细介绍

    Android webview加载H5方法详细介绍

    这篇文章主要介绍了Android webview加载H5的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-08-08
  • Android中增加新字库的方法

    Android中增加新字库的方法

    这篇文章主要介绍了Android中增加新字库的方法,本文分别讲解了不需要保留Google默认的中文字库、有需要保留Google默认的中文字库并在此基础上增加自己需要的新字库两种情况下的处理方法,需要的朋友可以参考下
    2015-04-04
  • Kotlin新手基础学习之Elvis操作符

    Kotlin新手基础学习之Elvis操作符

    Kotlin 是一种在 Java 虚拟机上运行的静态类型编程语言,被称之为 Android 世界的Swift,由 JetBrains 设计开发并开源,下面这篇文章主要给大家介绍了关于Kotlin新手基础学习之Elvis操作符的相关资料,需要的朋友可以参考下。
    2017-12-12
  • Android中正确使用字体图标(iconfont)的方法

    Android中正确使用字体图标(iconfont)的方法

    IconFont字体不仅仅流行于Web开发,在移动开发中也渐渐的使用的范围更广泛。这篇文章主要介绍了在Android开发中使用icon font的代码和方法。对大家学习使用iconfont有一定的参考借鉴价值,有需要的朋友们下面来一起看看吧。
    2016-10-10
  • 详解Android中用于线程处理的AsyncTask类的用法及源码

    详解Android中用于线程处理的AsyncTask类的用法及源码

    这篇文章主要介绍了Android中用于线程处理的AsyncTask类的用法及源码,讲到了实现AsyncTask中所用到的Handler及线程池等要点,需要的朋友可以参考下
    2016-05-05
  • Android自定义View实现星星评分效果

    Android自定义View实现星星评分效果

    这篇文章主要为大家详细介绍了Android如何利用自定义View实现一个星星评分的控件,文中的示例代码讲解详细,感兴趣的小伙伴可以尝试一下
    2022-11-11
  • Android开发中计算器的sin、cos及tan值计算问题分析

    Android开发中计算器的sin、cos及tan值计算问题分析

    这篇文章主要介绍了Android开发中计算器的sin、cos及tan值计算问题,结合实例形式分析了Android三角函数运算中的弧度与角度计算问题与相关解决方法,需要的朋友可以参考下
    2017-11-11

最新评论