0
votes
0answers
9 views
android keyboard obscure edittext
In my application, when I click on an EditText view, the virtual keyboard obscures the view, so I can't see my edits. How can I resolves it programmatically ?
0
votes
1answer
60 views
Android EditText boxes
I want to cause the focus of one edit text box to move to another on editting (meaning you can only type on letter before it automatically moves on to the next edit text).
It's the "on edit" that I …
0
votes
1answer
98 views
Catching key pressed with the virtual keyboard in Android?
With the physical keyboard you can catch key presses with a KeyListener, something like:
myEditText.setOnKeyListener(new OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, …
3
votes
1answer
171 views
Android: Can’t figure how to use setImeActionLabel
What I want to do is change the default "Done" label that appears in the virtual keyboard. Here's what I've tried without any luck:
mSearchInput.setImeOptions(EditorInfo.IME_ACTION_DONE);
…
1
vote
3answers
354 views
(Android) How do I prevent an EditText from resizing itself when the user is typing?
I have an EditText and a button set next to each other on the same horizontal line. It looks great, except when the user enters a lot of text, the EditText is resized, and the button is squished.
I …
0
votes
2answers
388 views
How to make android EditText smaller than default in height?
How to make android EditText smaller than default in height?
This is the default hight:
If I change the height, I can't see my text, but it has extra blank on bottom. check this image:
1
vote
1answer
522 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.
0
votes
3answers
523 views
How to replicate android:editable=”false” in code?
In the layout you can set the EditText widget to be non-editable via the android:editable attribute.
How can I do this in code? I need to make the EditText widget to be editable depending on …
