Browse Source

hide emoji keyboard when shouting

pull/61/merge
oogee 6 years ago
parent
commit
6f94d984c6
  1. 3
      app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/ShoutboxFragment.java

3
app/src/main/java/gr/thmmy/mthmmy/activities/shoutbox/ShoutboxFragment.java

@ -124,7 +124,8 @@ public class ShoutboxFragment extends Fragment {
Timber.i("Start sending a shout..."); Timber.i("Start sending a shout...");
editorView.setAlpha(0.5f); editorView.setAlpha(0.5f);
editorView.setEnabled(false); editorView.setEnabled(false);
emojiKeyboard.setVisibility(View.VISIBLE); if (emojiKeyboard.isVisible())
emojiKeyboard.setVisibility(View.GONE);
progressBar.setVisibility(View.VISIBLE); progressBar.setVisibility(View.VISIBLE);
} }

Loading…
Cancel
Save