Tagged Questions

35
votes
7answers
33k views

Android: show soft keyboard automatically when focus is on an EditText

I'm showing an input box using AlertDialog. The EditText inside the dialog itself is automatically focused when I call AlertDialog.show(), but the soft keyboard is not automatically shown. How do I ...
24
votes
2answers
18k views

How do I show the number keyboard on an EditText in android

I just basically want to switch to the number pad mode as soon a certain EditText has the focus.
6
votes
3answers
516 views

Soft Keyboard shows up on EditText focus ONLY once

Thanks for reading. I am facing a strange problem: My app behavior is such that when the Activity starts, I requestFocus() on an EditText and show the soft keyboard. However, when I press the back ...
6
votes
2answers
581 views

Can I use the soft keyboard without an EditText?

I'm creating a simple typing game in Android. I have no problem getting input from the physical keyboard, but now I'm trying to get the soft keyboard to appear without the EditText. So far, I've tried ...
4
votes
8answers
2k views

Displaying soft keyboard whenever AlertDialog.Builder object is opened

My code for opening an input dialog reads as follows: final AlertDialog.Builder alert = new AlertDialog.Builder(this); alert.setTitle("Dialog Title"); alert.setMessage("Request information"); ...
3
votes
3answers
573 views

Hide soft keyboard on application load

I have an application with an EditText element on the main view. This means that when my application is loaded the soft keyboard appears per default. I would like to be able to hide the keyboard on ...
3
votes
2answers
309 views

Hard keyboard Fail to focus editText

I have a common EditText. It's very strange because I can't focus it when use hard keyboard. Context condition: switch Droid's hardkeyboard on start the activity click the editText to input Fail to ...
3
votes
1answer
221 views

How to know if keyboard (dis)appears in Android?

I have an EditText and want to give it more lines when the keyboard appears. So i am looking for something like a "OnKeyboardAppearsListener" but can't find it. I think it must exist, but perhaps in a ...
3
votes
1answer
1k views

Soft Keyboard - Numeric Only

my question is kinda related to this question: http://stackoverflow.com/questions/3216169/numeric-soft-keyboard-on-android BUT, the question above isnt answered, so here i am. Theres a EditText that ...
2
votes
2answers
36 views

AnySoftKeyboad stays with garbage data after I hide it

I have a problem which occurs only when I use AnySoftKeyboard. I'm trying to show/hide the keyboard according to EditText focus. I used the methods I found in this post When I'm hiding the keyboard, ...
2
votes
1answer
428 views

setSoftInputMode for a Dialog to not hide EditText while typing?

I have a Custom Dialog that has an EditText at the bottom of the view. When I select the EditText, the keyboard comes up but hides the EditText within the Dialog.. I know that you can use ...
2
votes
0answers
581 views

Android: EditText stays hidden behind the keyboard

Before writing this question I have read through the following answers/articles: Android soft keyboard covers edittext field Android keyboard obscures EditText ...
2
votes
4answers
4k views

How to show soft-keyboard when edittext is focused

I want to automatically show the soft-keyboard when an EditText is focused (if the device does not have a physical keyboard) and I have two problems: When my Activity is displayed, my EditText is ...
2
votes
1answer
550 views

InputType of EditText in Android

I would like to have following: - number keyboard should be displayed first - but it should be possible to change to text keyboard and to type some letters. I've asked almost the same question and ...
2
votes
2answers
1k views

Automatic popping up keyboard on start Activity

I got a relative simple question. I have an activity with a lot of EditText's in them. When I open the activity it automatically focusses to the first EditText and displays the virtual keyboard. How ...
2
votes
1answer
1k views

Android - Soft Keyboard pushes layout of my activity out of screen

My activity's layout is as shown below. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" ...
2
votes
3answers
2k views

How to prevent that the keyboard hides my EditText?

I have a RelativeLayout at the top, then below i have a ListView in the center and finally at the bottom i have another relativeLayout with an EditText and a Button inside. I want the ListView to ...
2
votes
3answers
1k views

Android : EditText with custom keyboard

I created my own custom keyboard following the the example in the sdk. Now I would like to use this custom keyboard by default on my EditText in my app (actualy I have to long press the edittext and ...
1
vote
1answer
174 views

How to hide keyboard on enter key

i have an activity with four edittext and i want to hide keyboard when users finish to use one of the four edittext. if i click enter on keyboard, it will focus another edittext and keyboard still ...
1
vote
2answers
102 views

Event when user select back?

How can I catch the event when the user, after he entered the text on an EditText, select Back and the keyboard disappear?
1
vote
1answer
193 views

Android: Listview not shifting up with keyboard

My layout looks like this: <LinearLayout> <RelativeLayout> Some Image and Text as Title </RelativeLayout> <RelativeLayout> <LinearLayout> ...
1
vote
1answer
325 views

adMob banner covers text view when soft keyboard pops up

I have been having troubles keeping an adMob banner from rolling up along the soft keyboard and covering my text views.... This is the link to what I am trying to achieve in Android: ...
1
vote
1answer
1k views

How to disable Android Soft Keyboard for a particular activity?

I have an activity with one EditText where I need to input numbers only. Now, I have defined the Input Type for my EditText to be number only and have drawn up a pretty keypad for my user to use, ...
1
vote
2answers
2k views

Edittext keeps focus when keyboard up AND scrolling the listview

I use a listview. Each item in the list contains one edittext. When I click on an edittext, the soft keyboard pops up, the edittext I clicked on gains the focus for a short time and then lose it. I ...
0
votes
2answers
39 views

Numeric keyboard as default

I have an EditText where user can enter both numbers (0 - 9) and characters (a -z, what ever). But I would like to set the numeric soft-keyboard as default. I want the numeric keyboard appearing ...
0
votes
0answers
71 views

how to hide soft keyboard when default menu selecting in edit text?

on my app there is an option to select text from the edit text.the content will automatically set into the edit text.so i put code for hide the keyboard but when I'm trying to select text by ...
0
votes
1answer
102 views

How to scroll a view up to show EditText hidden by keyboard in a layout used in a dialog

i'm developing an app in android. I have some edittext in horizontal linear layout. When users fill them, when scroll finishes to scroll, keyboard will hide the last 2-3 edittext and users can't ...
0
votes
2answers
91 views

Android two edittext should be shown above the keyboard

This question may look to be very simple but i don't know the answer. In a Login page i have two edittext and when the first edittext is focused the keyboard comes and hides the second edittext and ...
0
votes
1answer
76 views

how to remove android edit text focus when it is disabled?

In small devices soft keyboard's "NEXT" button is used to enter the value for edit texts without touching the edit text. This is very helpful when multiple entry is to be filled.. But i disabled ...
0
votes
2answers
81 views

Keyboard hidden edittext and there isn't scroll ANDROID

I done a form with 5 edittexts but when the keyboard is going to show the last two edittext I can't see. Only way to switch to the next fields is to use the buttons on the keyboard. There is any ...
0
votes
2answers
116 views

How to suppress dictionary hints while entering text?

I am stuck with dictionary hints while entering password (or any other text field). I am doing it in this way: editText.setInputType(InputType.TYPE_CLASS_TEXT | ...
0
votes
1answer
272 views

Android KeyBoard doesn't show in AlertDialog

I have tried so many ways but I just can't get the display any Keyboard in my activity. Keyboard just doesn't show!!! I have button in my activity that when clicked calls the method below which ...
0
votes
1answer
150 views

Accept number and letter input from SIP when android:inputType of EditText View set to “numberDecimal”

When a View loaded, I want to force SIP to open and show Keyboard with numbers. Also, I want a editText view accepts Letter and Number input from SIP XML <EditText ...
0
votes
3answers
115 views

problem in hiding the keyboard when an editbox is clicked in Android app

in my app i am having an edit text box. When the user clicks the edit box i want to show him a alert box at that time i dont want the keyboard to be popped up. For this my code is as follows bd ...
0
votes
1answer
533 views

EditText with soft keyboard and “Back” button

When I'm using "EditText" I have the virtual keyboard. Pressing first time "Back" button hides the keyboard. Second press invokes "onBackPressed" callback in my activity. OK, but... I have no idea ...
0
votes
2answers
150 views

Android: Virtual Keyboard: the use has no idea what EditText he is filling in

I have a few forms that the user has to fill in and I use EditText to enter the information. the problem is, when the user uses the virtual keyboard there no information about which field he is ...
0
votes
1answer
195 views

Android: edittext disappearing

When soft keyboard appears in adjustResize mode, my edittext disappears. There is relativelayout with custom view stretched on the hole screen size as background and few edittexts over it. In ...
0
votes
1answer
252 views

How can I use the android landscape keyboard buttons?

I have an activity with two EditTexts. If, in landscape mode, I select the first EditText, the keyboard that is displayed has a "next" button which should allow me to type in the second EditText. ...
0
votes
0answers
355 views

onEditorAction Method is not called

I am coding for receving only number input on Android Phone, using EditText class. Below is XML code. android:id="@+id/number_edit" android:visibility="invisible" ...
0
votes
1answer
151 views

How to hide softkeyboad when activity start in android?

I have android app in which one layout contains Linearlayout, ScrollView, TextView, EditView and Button. when I call from one activity to other this activity call and set layout which I have describe. ...
0
votes
0answers
276 views

Android keyboard hides itself, showing blank space below, after coming back from screensaver

I am working on an android app and really enjoying it too. But today, I got stuck on a small problem with soft keyboard. I have a editText at the bottom of the screen and when user clicks on it a ...
0
votes
2answers
383 views

Android Text Input Special UI Item

I'm creating an IM client/server application for the Android OS, and am currently putting together the user interface. Right now, my interface consists of a EditText element, and a Button element. ...
0
votes
1answer
594 views

Android EditText input and virtual keyboard handling

Is it possible in some way to retrieve the input of an EditText without needing to add a dedicated button underneath (e.g. "SET"), just by touching the "Done" button on the emerging keyboard (Android ...
0
votes
1answer
138 views

How to change the domain extension on the Android Keyboard

Is it possible to change the domain extension (.com) on the Android Keyboard when you have an EditText field that is specified to be android:inputType="textEmailAddress"?
0
votes
3answers
445 views

InputType of EditText in Android

I want to use default keyboard for, but want also that it occurs with numeric input type. Does anybody know how to do that? Maybe there is a way to press '?123'-key programmatically? I've took a ...
0
votes
1answer
102 views

Supress the Soft Keboard when an activity loads… yet again

this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN); Same problem that I've read on other posts. I don't want the soft keyboard to pop up when the Activity ...
0
votes
2answers
1k views

Android - Adjust screen when keyboard pops up?

I want to be able to adjust my UI screen on Android when the soft keyboard pops up. So at the minute I have something similiar to the first picture below where I have and EditText at the bottom of ...