I inflate the ListView using the BaseAdapter and View holders. Inside the list view, each line has 3 Text View and 1 Edit Text.
Now I want to set the Listener to the List view. Values ββIf I click on any line, then the Listener must be installed so that I get the position of this line in the List view. The listener in the text view is set using "android:focusable="false" " But the edit text listener does not receive Set.
I have a Set Textwacher in the Text editor. Works correctly.
EditTextWacher editTextWacher = new EditTextWacher(viewHolder); viewHolder.editTextQuantity.addTextChangedListener(editTextWacher);
I do not know the exact problem of why this is happening. I set the focal false. Inside edit text. Still not working.
Edit 
source share