I am developing an app for android TV. I have a listview
with an ImageButton
+ Textview
s as children. As TV does not take touch events
Have you tried :
setFocusableInTouchMode(false);
or
setFocusable(false);
On both your items (ImageButton and TextView) ?
I had the same problem in listView but I found the solution,simply use imageView instead of image button, then row will be clickable and focusable as well.
NOTE: when ever we use button or imagebutton in listView the row of the list view gets disable to prevent this from happening use view or imageview instead.
Hope so this will help you.
I have to get focus on all clickable items so that user knows where the focus is. But the problem is I can get focus on list row if I add
View getting hang up due to multiple views inside row file, to get click You have to add one more property to your main layout of row xml.
android:descendantFocusability="blocksDescendants
But when I write above property then I'm not able to focus ImageButton which is in my row file.
I just tried one way to acheive to get foucus on ImageButton
as well as on listview
.
To get focus on ImageButton:
android:focusableInTouchMode="true"
to ImageButton.To get focus on Listview:
android:descendantFocusability="blocksDescendants
to main-layout within row xml.Now when you click on your ImageButton it will focus with your desire color even it will focus on listview click too.
Selecotor.xml
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android"
>
<item
android:state_pressed="true"
android:drawable="@android:color/transparent"
/> <!-- pressed -->
<item
android:state_focused="true"
android:drawable="@android:color/darker_gray"
/> <!-- focused -->
<item
android:drawable="@android:drawable/btn_star"
/> <!-- default -->
</selector>
Tested in S3 emulator, works well.
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.
Add below code to the parent layout of custom row,
android:descendantFocusability="blocksDescendants"
and add below code to any button or ImageButton in that layout
android:focusable="false"
android:focusableInTouchMode="false"