As I\'m trying to debug my program, I can\'t figure out the error.
I have initialized two buttons and used .setOnClickListener on them. When the user clicks the bu
I was getting ViewPostImeInputStage ACTION_DOWN message when a line of my code had -->
ViewPostImeInputStage ACTION_DOWN
if(button.getText().equals("word"))
I got the desired output after correcting the if statement to -->
if(button.getText().toString().equals("word"))
Hope it helps someone.