Linked Questions
27 questions linked to/from Android - Programmatically Hide/Show Soft Keyboard
1 vote
1 answer
3k views
Double click on edit text keyboard is showing
I have implemented token auto complete text view on EditText. My issue is that I want the keyboard to be shown on a single click on an EditText rather than on double click. completionView....
3 votes
1 answer
2k views
Android : EditText losing focus after 'Send'
I am working on a messaging app in which I have an EditText for the user to type his message. I have provided a 'Send' button in keyboard with setImeOptions() method. However, whenever the user hits ...
7 votes
1 answer
5k views
How to show/hide the soft keyboard without any animation (e.g. fade) in Java?
Is there any way to show or hide the soft keyboard instantly, without any animation? In Cyanogenmod 10 it displays with a fading animation.
0 votes
2 answers
2k views
Android Dialog setMessage
I'm having trouble with the message of a dialog. Everything works fine until I want to type information in the edittext and the keyboard pops up - then the second (and last) line of the message of ...
0 votes
2 answers
1k views
EditText Keyboard is dissappearing
I have an EditText and a Button in LinearLayout. When clicked to button, I am removing all views in layout and adding another view. When back button is pressed I am removing all views and adding ...
0 votes
4 answers
861 views
Android:how to show the soft keyboard on the LinearLayout
Program's main UI of my App is divided into two sections, Made up of two LinearLayouts.The LinearLayout above aims to show the aircraft.The LinearLayout below aims to show the soft keyboard.I want ...
1 vote
3 answers
497 views
Hide and Show the Soft Keyboard - simultaneously
If I may to ask almost the same question here from this topic I've added in my activity_main.xml file: android:focusable="true" android:focusableInTouchMode="true" activity_main.xml: <?xml ...
0 votes
2 answers
363 views
I know how to hide keyboard but where to put this code. i am confuse
Here all thing is working fine but i want to hide keyboard when click anywhere outside edittext... Here is the source: screen = this; sp = new ServiceProxy(); login_account=(Button)...
0 votes
0 answers
310 views
Using both soft keyboard and physical keyboard in Android app
is there a way to force soft keyboard in Android 4.4 app? I'm developing an app which needs both software keyboard and bluetooth barcode reader. Barcode reader will be used in 99% of cases, but there ...
0 votes
2 answers
184 views
How to keep the software keyboard in Android from hiding after a TextBox loses focus in Uno Platform?
I have a TextBox and a Button. When the button is clicked, the TextBox loses focus and the keyboard hides. How do I keep the keyboard from hiding when the button is clicked? I first thought to use ...
1 vote
2 answers
154 views
Android, how to display keyboard while I'm already using stateHidden?
I have to use stateHidden in Manifest for some reason. But I also need to display keyboard as default for a onCreate(). But whatever I do, the keyboard still not pops-up as default. I have tried: ...
0 votes
2 answers
64 views
showing view on Android [closed]
I wrote a small program to evaluate expressions using the set. But on the small screen is the following With keyboard and without keyboard How to fix the Layout Issue? solved the problem by ...