Button系列:不用selector,也能实现Button高亮和置灰效果

Posted zhangjin1120

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Button系列:不用selector,也能实现Button高亮和置灰效果相关的知识,希望对你有一定的参考价值。

这里推荐第三种方式,看效果图:

   maven { url "https://jitpack.io" }
   
implementation 'com.github.RuffianZhong:RWidgetHelper:androidx.v0.0.3'
  • 布局核心代码:
        app:background_normal="#ffae00"
        app:background_unable="#ccced0"
        app:corner_radius="20dp"
  • 布局完整代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="io.kailun.demo.MainActivity"
    tools:ignore="HardcodedText">

    <com.ruffian.library.widget.RTextView
        android:id="@+id/rtv1"
        android:layout_width="200dp"
        android:layout_height="40dp"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="20dp"
        android:gravity="center"
        android:text="购 买"
        android:textColor="@color/white"
        android:textSize="18sp"
        app:background_normal="#ffae00"
        app:background_unable="#ccced0"
        app:corner_radius="20dp"
        app:enabled="true" />

    <com.ruffian.library.widget.RTextView
        android:id="@+id/rtv2"
        android:layout_width="200dp"
        android:layout_height="40dp"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="20dp"
        android:gravity="center"
        android:text="购 买"
        android:textColor="@color/white"
        android:textSize="18sp"
        app:background_normal="#ffae00"
        app:background_unable="#ccced0"
        app:corner_radius="20dp"
        app:enabled="false" />

</LinearLayout>

以上是关于Button系列:不用selector,也能实现Button高亮和置灰效果的主要内容,如果未能解决你的问题,请参考以下文章

android selector设置button点击效果(详细)以及常见问题

三.Netty入门到超神系列-聊天室案例

android studio的button在点击时,点击后样式

Android App内存优化之图片优化

selector的button选中处理问题

如何不用 transition 和 animation 也能做网页动画