TextView and Button in each row and onListItemClick()

后端 未结 2 1594
故里飘歌
故里飘歌 2020-12-03 11:55

I have a ListView with some elements on it. Each row has a TextView and a Button. It looks like this:

| Some text in a row (Button) |

Now, w

2条回答
  •  借酒劲吻你
    2020-12-03 12:23

    add the property focusable="false" to your TextView ::

    
    

    and probably you will need to do the same to the other elements inside your ListView.


    Programatically we can use the method setFocusable():

    v.findViewById(R.id.my_button).setFocusable(false); 
    

    setFocusable(): Setting this to false will also ensure that this view is not focusable in touch mode.

提交回复
热议问题