Hi I'm trying to make an activity that displays an ExpandableListView as shown in the figure.
When you click on the group it expands and shows a LinearLayout with a textview and an editext.
Right know the problem I have is that when a click on the EditText it doesn't get focus and I have to tap twice on it in order to make it get focus and display the keyboard, and then when I enter text I see nothing initially while I'm typing and then when I hide the Keyboard the EditText is updated with the text I typed
I've tried adding android:descendantFocusability="afterDescendants" to the expandableListVie layout, but the behaviour is the same.
Any Idea?? or any other way I could implement this layout??