Button系列:自定义高亮和置灰效果

Posted zhangjin1120

tags:

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

Button布局代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/btn_login"
        android:layout_width="270dp"
        android:layout_height="44dp"
        android:background="@drawable/selector_btn_login"
        android:enabled="true"
        android:text="登 录"
        android:textColor="#ffffffff"
        android:textSize="16sp"
        android:layout_centerInParent="true"
      />

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="测试"
        android:visibility="visible"
        android:layout_centerHorizontal="true"
        android:layout_below="@id/btn_login"
        android:onClick="changeLoginBtn"
        />

</RelativeLayout>
  • 背景selector_btn_login.xml代码:
<?xml version="1.0" encoding="utf-8"?>
<selector
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="false" android:drawable="@drawable/shape_login_inactive"/>
    <item android:state_enabled="true" android:drawable="@drawable/shape_login_active"/>
</selector>
  • 高亮状态shape_login_active.xml代码:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#00391F" />
    <corners android:radius="25dp" />
</shape>
  • 置灰状态shape_login_inactive.xml代码:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <solid android:color="#7F9C8F" />
    <corners android:radius="25dp" />
</shape>
  • 变色控制:
  btnLogin.setEnabled(!btnLogin.isEnabled());

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

TextView系列:TextView的高亮和置灰状态

自定义按钮自定义置灰

粒子效果 QQ粘性布局 (CAShapeLayer形状图层)

Android自定义控件系列—Button七十二变

怎样用jsp标签把按钮置灰

博客园自定义页面风格设计 后续篇(页面设计模式及代码高亮 鼠标点击效果升级)