How to highlight ListView item on touch?

后端 未结 4 1576
野的像风
野的像风 2021-02-02 17:46

I have a simple ListView and I want each of it items to be highlighted on user\'s touch. I thought this should happen by default but it isn\'t. Can you advice?

4条回答
  •  温柔的废话
    2021-02-02 18:46

    ListViews do not retain a visual indication of focus (or selection) while in touch mode. You will only see this when you use the hardware keyboard or controls to navigate your UI.

    See the Google Touch Mode Android Blog article for more details.

    So, if you are only using touch mode, you will never see focus or selection on ListViews.

提交回复
热议问题