android: what is the difference between focused, enabled, pressed, and selected states?

后端 未结 2 1859
天命终不由人
天命终不由人 2020-12-02 14:22

I looked at http://developer.android.com/reference/android/view/View.html to figure out the differences but could not understand much. I only partly understood the \"selecte

2条回答
  •  北海茫月
    2020-12-02 15:02

    Enabled -> User Interaction possible.

    Disabled -> User interaction not possible.

    • if you hover the mouse over a widget, it is focussed
    • If you make a press-down (half click) on that widget, it is pressed
    • If you press-down and press-up while the mouse is at the same position, it is selected

提交回复
热议问题