Android中妙用Selector实现颜色图片切换效果

在目前的安卓开发中,很多情况下,都会涉及到颜色变化,比如应用程序中下方的按钮,当我们点击按钮的时候,希望更换图片或者是按钮中的颜色发生变化,这种颜色的改变使得用户能够更加清晰的看到所处的“功能”。

通过逻辑代码实现文字的改变并不特别方便,所以,本文将介绍使用selector对文字或者图片进行修改。

本文例子中,使用RadioButton进行按钮的设置,不多废话,上效果。


原始效果:



点击之后效果:




Android应用目录结构:



text_color.xml中内容:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="false" android:color="#ff0000"/>
    <item android:state_checked="true" android:color="#0000ff"/>
</selector>


imag_drawable.xml中内容:

<span style="font-size:18px;color:#3366ff;"><?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="true" android:drawable="@mipmap/blue"/>
    <item android:state_checked="false" android:drawable="@mipmap/red"/>
</selector></span>


activity_main中内容:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="study.yat.myblogtest.MainActivity">

    <RadioButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:button="@null"
        android:gravity="center_horizontal"
        android:text="点击我"
        android:textColor="@color/text_color"
        android:drawableTop="@drawable/image_drawable"
        />
</RelativeLayout>

注:color文件夹系统默认是不存在的,需要自己创建。使用selector实现的切换效果,在逻辑代码中可以只设置控件的checked等相关属性即可。








评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值