The default onscreen input method provided by Android OS
0
votes
2answers
17 views
override standard android keyboard
I'm trying to override the soft input keyboard for a singular EditText field. I've mostly been following this excellent example -- setting the XML to inputType="text", and then, within the onCreate:
...
0
votes
1answer
12 views
Preventing viewport resize of web page when android soft keyboard is active
I'm developing a Javascript/JQuery plugin for Responsive Web Design. It has a function that monitors the viewport for changes, specifically resize and orientation. When a change is detected, a ...
0
votes
0answers
24 views
Android soft keyboard hides inputs from CordovaWebView when in fullscreen
I have a CordovaWebView that presents some html forms. When i focus on an input field, the Android's soft keyboard pops up and, for certain fields, according to their position, it gets on top of it. ...
-1
votes
0answers
11 views
Softkey not showing all the button on Android Emulator after update
Before updating Eclipse Android plugin and SDK manager when I was create new emulator then it show lot of button on softkey.
And after updating when I create new emulator then it show few button on ...
0
votes
0answers
10 views
Android selective resize elements on soft keyboard
I have a problem with this layout:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
...
0
votes
0answers
11 views
Managing Layout with soft input keyboard android
I have an edit text located at the bottom of the screen.when edit text is focused i want to move only edit text along with soft input keyboard leaving remaining views position unchanged. window soft ...
0
votes
1answer
31 views
Keyboard now shows on inflated editText even after clicking on it
Background
I have a form-like activity, which has some views that can be created dynamically upon pressing.
I'm using an xml for each field that is inflated upon clicking on a button.
What I need ...
0
votes
1answer
23 views
Stop ScrollView collapsing when using keyboard and allow scrolling of elements behind?
I know there are a few questions about this on SO but I haven't found one to solve my exact issue, nor have I been able to figure it out from other answers.
I have a layout with a few EditText boxes, ...
1
vote
2answers
48 views
Tabulator keyboard key in a formulary
Seriously, nobody knows how to achieve this?. Is this even possible?. Maybe a yes or no answer could help me out!
I have a form that looks like this:
The rectangles with a B on it, means that are ...
0
votes
0answers
23 views
looking for android keyboard apps for kiosk style application
I've got a custom flash app on my phone that's intended for kiosk type usages.
I was going to have a virtual keyboard written for it with defined limitations- but i thought i would ask here first and ...
0
votes
0answers
13 views
Android performEditorAction with EditorInfo.IME_ACTION PREVIOUS parameter do not work correct
I have custom soft keyboard for Android. OnKey action I check for some custom keycode. If it equals for my keycode
getCurrentInputConnection().performEditorAction(EditorInfo.IME_ACTION_PREVIOUS);
...
0
votes
1answer
20 views
Detecting soft keyboard being open / KeyEvent using a Service
I've read most of the posts here regarding detecting soft keyboards or detecting KeyEvent. I saw methods such as measuring the size of the view. However, the issue of my case is that I'd like to ...
2
votes
1answer
28 views
adjust background with getwindow()
I have looked at the following posts
How to keep background image size when software keyboard show
Android: Soft Keyboard resizes background image
Overdraw and Romain Guy's blog post Android ...
0
votes
1answer
25 views
Overlapping of android Keyboard - Real Solution
I have made hundreds of layout but when this type of situation comes, the android keyboard always overlaps with the edit text or the button below. Everytime I use some tricks and tips to solve it, but ...
1
vote
0answers
28 views
Get state of soft input keyboard on Android
I have an EditText in my Android app, with a normal keyboard attached to it, e.g. there are no custom filters, or other restrictions set on it. I would like to find out if the user uses the QWERTY ...
0
votes
0answers
15 views
Webview cannot bring up soft keyboard
I have a webview controlled by 4 buttons - my test device is a samsung galaxy s4 - whenever I try and enter data into a field the keyboard pops up breifly and then disappears leaving me unable to use ...
1
vote
0answers
19 views
Header Layout Hidden When Scrolling With Soft Keyboard Shown
I have a strange error with ScrollView.
When the soft keyboard is not shown, scrolling works fine on both 2.2, 2.3 and 4.0.
But when the soft keyboard is shown, scrolling makes header layout ...
0
votes
0answers
15 views
adjustResize attribute for Keypad is responding late
I have a EditText layout for which I have given android:windowSoftInputMode="adjustResize".
Now, when I click on the EditText , the whole layout does get resized but its only after 15-20 seconds. The ...
0
votes
1answer
38 views
Android: Navigation using Tab key doesn't work properly on input boxes
For large size screens, the default android keyboard automatically displays Tab keys. I have a phonegap application which contains several input boxes on one page. When I try to navigate between input ...
0
votes
0answers
24 views
Android admob issues with keyboard
I have the following code in my layout xml file and the Ad loads perfectly on the first run but whenever I switch to a different app and return to my app the soft keyboard shows up on the screen. All ...
0
votes
1answer
31 views
KeyIcon doesn't work
I'm using the following code (this is a part of it) for my softKeyboard.
<Row android:rowEdgeFlags="bottom" >
<Key
android:codes="83"
android:keyLabel="CLR" />
...
2
votes
1answer
58 views
use a string from edit text in my keyboard
I'm playing around with softkeyboard.
i added this to preferences
<EditTextPreference
android:name="Custom ket"
android:summary="Set up a custom key"
android:title="Custom key"
...
2
votes
2answers
79 views
Android - Capture “Done” and “Enter” key events on soft keyboard
I have a Login Page in my application where in there is username and password EditText fields and then a login Button. On pressing Login Button it will land into the main screen. The same action has ...
2
votes
3answers
34 views
Keyboard issue for EditText
I have a Dialog in which I am having a EditText.
Issues which I am facing are:
1). When Dialog is shown at that moment Keyboard does not come itself. So I had to programmatically bring keyboard up.
...
0
votes
0answers
19 views
Another disabling SoftKeyboard (with specific conditions)
I have activity with editText1 editText2 and some buttons.
I use buttons to type Hex and Dec digits and move cursor left, right, home, end ...
Can this be done :
1) Disable android soft-keyboard ...
0
votes
0answers
18 views
Can we disable the text highlight in keyboard android?
I have a EditText which is a password field. I don't want the keyboard text highlighting of text words. I have attached the screenshot of what i mean. Is it possible to disable that programmatically ...
0
votes
1answer
48 views
Custom Keyboard in webview android
I have created custom keyboard and extends InputMethodService implements OnKeyboardActionListener.
when user tap on any key then i explicitly call KeyEvent like.
event = new ...
0
votes
1answer
54 views
Check the soft keyboard hidden or shown
I have code in which I want to detect the soft keyboard shown or hidden.
I saw here How to check visibility of software keyboard in Android? an answer from Reuben Scratton, but I have trouble with ...
0
votes
2answers
46 views
Disable Swype keyboard for edit text
I have only a EditText in my fragment. I want user not to use Swype Keyboard for that particular EditText. How can I disable it and allow user to type using other keyboard available.
0
votes
0answers
56 views
ScrollView smoothScrollTo does nothing when screen off
I have this problem that when the device screen is turned off, and my Timer triggers, I call ScrollView method smoothScrollTo.
However it does nothing, I am not getting onScrollChangedcallbacks at ...
10
votes
2answers
691 views
Implementations of Emoji (Emoticon) View/Keyboard Layouts
I am trying to figure out how the emoji (emoticon) selections are implemented on the Facebook app and the Google Hangouts app. I looked into the SoftKeyboard Demo app in the Android API Samples but ...
0
votes
0answers
24 views
Android: cursor position is reset when soft keyboard is shown
I have used this solution for closing input soft keyboard when i press outside an EditText.
This solution works fine but it has a lack: if i close the soft keyboard pressing outside an EditText, and ...
0
votes
1answer
23 views
Android softkeyboard shows (A -Z) text with(1-9) digits after giving input type =“numberpassword”
I have one quesiton with me.
I am trying to find the answer but no success.
1-I have one editpasswordfield in which i can give only numeric password.
i did like this
<EditText
...
0
votes
1answer
50 views
Avoid soft keyboard from pushing my layout in Titanium
I have a textbox on a screen. When textbox is focused, the layout is shrinked and all messed up. I know how to resolve this in Android SDK, by adding android:windowSoftInputMode="adjustPan" to ...
0
votes
2answers
51 views
Can anyone tell me how to disable Delete key in the soft keyboard?
Can i disable delete button in soft keyboard in android.Is it possible.If Possible how can i disable the delete button in soft key button in android.
0
votes
1answer
23 views
flash cs6 - hide word suggestion in android
I'm using flash cs6 and I need to disable word suggestions, while using softkeyboard via stageText.
I had a try with CONTACT softkeyboard type, however itisn't working as I expected.
How can I ...
-2
votes
0answers
18 views
Disable hide functionality of android softkeyboard [closed]
Can anybody help me to disable or hide the hide keyboard button in an onscreen keyboard.
0
votes
1answer
51 views
Android soft keyboard pops up and hides automatically
I have this strange issue where the soft keyboard keeps popping up and hiding out in my application.
It only happens on tablets, on the phone it works with no problem, only when running the app in a ...
1
vote
0answers
127 views
how to make custom key in soft keyboard in android
I am trying to develope custome soft keyboard in android, I am want change color of outptut text of key when I press on th key, my idea is by make class extends key by this code:
public class k ...
4
votes
0answers
25 views
How to allow softkeaybord cover only defined views?
My layout has the following structure:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
...
0
votes
1answer
46 views
Android Keyboard Type
Is it possible to have this keyboard in android when user tap on an edit text?
This keyboard needs to come up first. I used different input type however I didnt get the one that I attached.
Can ...
0
votes
1answer
60 views
How to know if the keyboard layout changes between numbers and letters?
I have an EditText where users normaly enter numbers. Therefore I'm using InputType.TYPE_CLASS_NUMBER to get a numerical soft keyboard. Occationally though, some users may want to enter letters, so I ...
0
votes
1answer
50 views
How to present keyboard and not shrink background image in layout
I have a scroll view and inside that there is a layout out.
Inside that layout I have included a form (basically textfields and textviews)
When in the runtime. if I press on a textfield keyboard ...
0
votes
1answer
73 views
Android: strange behavior of Soft Keyboard with EditText and ListView
I'm going crazy!!! Please help me. Ths is the problem:
If i have an Activity with an EditText and a ListView the Soft Keyboard is shown when the Activity comes visible.
If i have remove the ListView ...
2
votes
0answers
125 views
Overlapping Keyboard with Edit Text in Android - Want the Real Cause and Solution
I always face a problem in android layouts where my keyboard overlaps with the edittext. Many people have suggested different different solutions doing like this :
...
1
vote
2answers
54 views
How to remove extra spaces on softkeyboard
I would like to know how to remove the top space/margin of a soft-keyboard.
For clearer picture, checkout the following screenshots:
With space and without space:
0
votes
0answers
72 views
Cannot see Android KeyboardView within Graphical Layout
I'm trying to create a simple activity that includes a KeyboardView. I'd like to be able to see it in my Graphical Layout.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
1
vote
2answers
93 views
showSoftInput doesn't work after orientation change
I have a fragment with a single EditText that needs the soft keyboard to remain open continually. The keyboard gets hidden when the screen is rotated. I'm calling showSoftInput in OnActivityCreated ...
3
votes
1answer
146 views
How to adjust layout when soft keyboard appears
I would like to adjust/re-size the layout when the soft-keyboard activated, as below:
Before and After:
Found couple resources in SO:
How to keep all fields and texts visible while the soft ...
0
votes
0answers
62 views
Android Softkeyboard - “Prev” and “Next” not working
I have an Activity that contains only a LinearLayout and a WebView as a child. The WebView only displays a form to submit with the user data (I don't have control over the content of this form). When ...





