码迷,mamicode.com
首页 > 其他好文 > 详细

selector的按钮选中处理问题

时间:2014-11-19 01:46:33      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:xml   动画   

1、背景介绍

       在做Android项目开发的时候,有时我们需要对按钮做一些特殊的处理,比如按钮点击的时候会有一个动画的效果,实际上就是几张图片在短时间的切换;再比如有时候我们需要对界面的选择的时候,需要表示该项目是选中状态还是不被选中状态,怎么办,同样使用两张图片,分别表示不同状态就行了。


2、代码示例

2.1 按钮的代码示例

<selector
  xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@drawable/menubar_home_pressed" />
    <item android:state_focused="true" android:state_enabled="true" android:drawable="@drawable/menubar_home_pressed" />
    <item android:state_enabled="true" android:drawable="@drawable/menubar_home_normal" />
    <item android:state_focused="true" android:drawable="@drawable/menubar_home_pressed" />
</selector>

上面的这段代码,表示的是一个按钮的动画效果。

2.2 选中与失去焦点

</pre><pre name="code" class="html"><pre name="code" class="html"><selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/menubar_home_pressed" android:state_selected="true"/>
    <item android:drawable="@drawable/menubar_home_normal"/>     
</selector>


上面的代码中,item部分第一行表示选中状态,第二行表示默认状态。


3、问题解析

        在2.2中的代码,我们如果写成以下形式:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/menubar_home_normal"/>    
    <item android:drawable="@drawable/menubar_home_pressed" android:state_selected="true"/> 
</selector>

         如果2.2中的item位置交换一下,第一行放在第二行的下面,那么我们可以在xml文件中看到一条黄色的波浪线。如下图所示:

bubuko.com,布布扣

        我们可以看到,代码中有这样的提示:

This item is unreachable because a previous item (item #1) is a more general match than this one

       这句话就是说第二行item之前,不能有元素出现。如果这样放置,会出现按钮一直是默认状态,而无法获得焦点的情况。


selector的按钮选中处理问题

标签:xml   动画   

原文地址:http://blog.csdn.net/ljtyzhr/article/details/41250743

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!