Hello, I have a problem with edittext within the listview, it will not let me type and it is giving these errors.
Follow the errors below:
W/IInputConnectionWrapper: beginBatchEdit on inactive InputConnection
W/IInputConnectionWrapper: getSelectedText on inactive InputConnection
W/IInputConnectionWrapper: endBatchEdit on inactive InputConnection
W/IInputConnectionWrapper: getTextBeforeCursor on inactive InputConnection
W/IInputConnectionWrapper: getTextAfterCursor on inactive InputConnection
Follow my code:
editText = new EditText(context);
editText.setLines(qtdeQuestoes);
editText.setInputType(InputType.TYPE_CLASS_TEXT);
frameLayout.addView(editText);