Can anyone explain (or point me to a link that explains) the difference between state_activated, state_selected, state_pressed, and state_focused for ListView items? Are they all valid states for ListViews? Does it matter if touch or a keyboard are being used? This link no longer seems to be valid.
Many thanks!
state_selectedis used when an item is selected using akeyboard/dpad/trackball/etc.
state_activatedis used when View.setActivated(true) is called. Thisis used for “persistent selection” (see Settings on tablet for
instance)
state_pressedis used when the user is pressing the item eitherthrough touch or a keyboard or a mouse
state_focusedis used if the item is marked focusable and it receivesfocus either through the user of a keyboard/dpad/trackball/etc. or if
the item is focusable in touch mode