EmoticonGIFKeyboard
EmoticonGIFKeyboard copied to clipboard
How to prevent EmoticonGIFKeyboard to be shown at starting
EmoticonGIFKeyboard should not be shown by default, it should open only when click on button
Is there any solution for it? I am facing the same issue.
Did you try calling emoticonGIFKeyboardFragment.close()
?
I did a workaround by calling emoticonGIFKeyboardFragment.close()
after a small delay, else it would throw NullPointerException
on emoticonGIFKeyboardFragment
Another way is hide keyboard container R.id.keyboard_container
getSupportFragmentManager() .beginTransaction() .replace(R.id.keyboard_container, EmoticonGIFKeyboardFragment) .commit();
okay
Options 1: not elegant .........if you use de code inside the file EmoticonGIFKeyboardFragment in the line mRootView = view.findViewById(R.id.root_view); --->>>>>> after add mRootView.setVisibility(View.GONE);
options 2: inside xml fragment_emoticon_gif_keyboard add inside line android:id="@+id/root_view" -->>>> android:visibility="gone"
i want to show search gif..without keyboard above ... everytime my softkeyboard stay above gif search ..
how can i override the search gif button ? ... always the softkeyboard be above the search .. i can see what im writing.
before the softkeyboard open and the gif and emotion section up .. but its not the same behavior of whatsapp ..