Android状态系统(一)——View状态设计

大家在安卓开发中可能会一直有个疑问,android中selector工作原理是什么?为什么View设置selector背景后,View就能响应selector中设置了各种状态? 如果要自己实现一个Drawable也能响应View的各种状态,需要怎么做?

要回答这些问题,需要深入理解安卓的状态系统。从今天开始,我们会带领大家逐步深入理解安卓的状态设计,直到能够回答我们所有对于状态的疑问。

首先,我们来认识一下View的状态,在View类中,状态的定义如下:

static final int VIEW_STATE_WINDOW_FOCUSED = 1;
static final int VIEW_STATE_SELECTED = 1 << 1;
static final int VIEW_STATE_FOCUSED = 1 << 2;
static final int VIEW_STATE_ENABLED = 1 << 3;
static final int VIEW_STATE_PRESSED = 1 << 4;
static final int VIEW_STATE_ACTIVATED = 1 << 5;
static final int VIEW_STATE_ACCELERATED = 1 << 6;
static final int VIEW_STATE_HOVERED = 1 << 7;
static final int VIEW_STATE_DRAG_CAN_ACCEPT = 1 << 8;
static final int VIEW_STATE_DRAG_HOVERED = 1 << 9;

也就是说,在安卓的设计中,状态一共是10个,其含义分别如下:

状态说明
VIEW_STATE_WINDOW_FOCUSEDwindow处在前台状态,比如通知栏拖下时,window就不再是前台状态
VIEW_STATE_SELECTED选中状态,比如CheckBox或者RadioButton的选中
VIEW_STATE_FOCUSED是否取得焦点,轨迹球和方向键可以触发该状态,手机现在一般看不到该状态,机顶盒上比较常见
VIEW_STATE_ENABLED正常状态
VIEW_STATE_PRESSED按下状态
VIEW_STATE_ACTIVATED表示用户选中了自己感兴趣的项目,比如勾选了ListView里的item中的CheckBox
VIEW_STATE_ACCELERATED表示设置了硬件加速,如果有该标记,则colorBackgroundCacheHint会被忽略
VIEW_STATE_HOVERED表示当有一个指针悬浮在该View之上
VIEW_STATE_DRAG_CAN_ACCEPT表示此View有能力接受用户拖拽的其他View
VIEW_STATE_DRAG_HOVERED表示在拖拽操作中, 有View正在位于自己的上方

接下来便是这些状态与Android.R.attr里的属性的对应:

static final int[] VIEW_STATE_IDS = new int[] {
    R.attr.state_window_focused,    VIEW_STATE_WINDOW_FOCUSED ,
    R.attr.state_selected,          VIEW_STATE_SELECTED,
    R.attr.state_focused,           VIEW_STATE_FOCUSED,
    R.attr.state_enabled,           VIEW_STATE_ENABLED,
    R.attr.state_pressed,           VIEW_STATE_PRESSED,
    R.attr.state_activated,         VIEW_STATE_ACTIVATED,
    R.attr.state_accelerated,       VIEW_STATE_ACCELERATED,
    R.attr.state_hovered,           VIEW_STATE_HOVERED,
    R.attr.state_drag_can_accept,   VIEW_STATE_DRAG_CAN_ACCEPT ,
    R.attr.state_drag_hovered,      VIEW_STATE_DRAG_HOVERED
};

为什么要有这个对应呢?因为我们在xml布局中也经常要用到这些状态,这些状态是如何被使用的呢,请往下看:
R.attr可以在sdk/platforms/android-17/data/res/values/attrs.xml中找到,以上的属性都属于DrawableStates,以focus为例,其定义如下:

<attr name="state_focused" format="boolean" />

每一个属性都是布尔类型的,看到这里,大家一定会想起selector的写法,比如:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:drawable="@drawable/btn_selected"/>
</selector>

android命名空间对应就是/data/res,android:state_focused对应的就是R.attr.state_focused。

说到这儿,你应该对安卓中各个状态有了初步的了解了,下一讲,我们会一起讨论一下这些状态的组合。
by 如是我聞

    原文作者:茶工坊
    原文地址: https://www.jianshu.com/p/1a76fb565ee4
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞