Android custom ListView with ImageButton is not getting focus

前端 未结 5 1006
感动是毒
感动是毒 2020-12-08 22:42

I am developing an app for android TV. I have a listview with an ImageButton + Textviews as children. As TV does not take touch events

5条回答
  •  不思量自难忘°
    2020-12-08 23:08

    I had the same problem before. I solved my problem with adding (to the layout in xml)

    android:focusableInTouchMode="true"
    android:clickable="true"
    

    So my problem was resolved.

    Note: Adding only android:focusableInTouchMode="true" doesn't work, You must have to make the layout clickable true, after focusableInTouchMode true.

提交回复
热议问题