OnClickListener stopped working, when I clicked it says: ViewPostImeInputStage ACTION_DOWN tried to wrap the Layout in another,

 <FrameLayout> <--- родительский Layout <RelativeLayout> // содержание здесь </RelativeLayout> </FrameLayout> 

I also tried to make my onClickListener () to each element:

 btnLocation.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { } }); 

But still does not work. What to do in this situation?

  • try setting a little padding for your btnLocation - mit
  • Tried, did not help - Lucky_girl
  • Try adding android:clickable="true" for RelativeLayout - YuriiSPb
  • I tried, it still does not work. - Lucky_girl

0