Android supports a variety of keyboard devices including special function keypads (volume and power controls), compact embedded QWERTY keyboards, and fully featured PC-style external keyboards.
1
vote
2answers
41 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 ...
1
vote
0answers
32 views
New to kernel development: “Virtual” input driver in kernel?
I'm doing some edits to an input device driver in an android kernel.
This device has a limited range of keybits and evbits enabled. What I want to do is to create a new /dev/input event node that is ...
-1
votes
0answers
43 views
How to add Miters (m) to edit text in android in TextWatcher
I need to add the Meters "m" symbol when users enters into the text in edit text box.I have searched for this and found some solution .but it wont works for me.
My edit text in xml file is ...
...
0
votes
1answer
24 views
want to show numeric soft input keyboard in default alphabetic keybord [duplicate]
i have many input fields in my project and all of them accept numeric values followed by alphabetic values(like 246736adsf) so i want to show numeric keyboard first(in keyboard having numeric and ...
0
votes
0answers
31 views
setOnItemClickListener in Gridview does not work
I am working on a Sudoku app. My main Layout is 9 GridView of 9 TextView. I want when the user click on any textView of the 9 in any Gridview of the 9 Gridviews a keyPad pops up to select his number. ...
0
votes
0answers
28 views
Sticky header for a screen
I have my screen in the below form.
RelativeLayout(Parent)
HeaderView(Relativelayout align parent top)
ScrollView(between header and footer)
One of the scrollview child is ...
0
votes
1answer
41 views
How to set keyboard key sizes to match icons
I have a customized keyboard which uses images to represent the keys. I'm currently having a problem with the key sizes, as the images have a set size. After I set the keyIcon, there are blank spaces ...
0
votes
0answers
19 views
How to diable Android HARDKEYBOARD keyboard? [duplicate]
I am trying to disable\freeze android hard keyboard from an Android Activity using the following pieces of code.But none is working.
android:configChanges="keyboardHidden"
in manifest file.
Also ...
0
votes
2answers
97 views
Android Keyboard is not showing on webview's textbox onfocus
In my application, the android keyboard is not shown in the webview's textbox onfocus. Is there any restrictions for this?. I have tried webview.requestFocus() method in the webview touchlistener. But ...
1
vote
1answer
90 views
Android: How to override default behavior of dialer
I am making modifications in a previous project, which is basically developed for kids and teenagers. It blocks text messaging, emails, calls and internet when a user drives at speed greater than 16 ...
1
vote
1answer
37 views
Setting Android Key Board Type
I'm new to Android development. For that reason, I apologize if this is a dumb question. I have honestly tried to figure this out and read a number of related questions without any success.
I have a ...
0
votes
0answers
40 views
How to hide keyboard on dialog dismiss
I have an Activity with single Fragment on it. There is one EditText on the fragment.
The keyboard is popping up as soon the fragment is shown, however I managed to block it setting in the manifest ...
2
votes
2answers
46 views
Disable DPAD keys in android
I am trying to catch events generated by the arrow keys (UP, DOWN, RIGHT and LEFT) and disable them. Below code snippet is from one of the activity class.
@Override
public boolean onKeyUp(int ...
1
vote
1answer
87 views
On HTC Desire S, soft keyboard not popping up on EditText focus
I am having an EditText with imeOptions="actionSearch". Now when I click on EditText, the keyboard does not pop up in some of HTC Devices, like HTC Desire S & HTC Incredible. EditText xml is as ...
0
votes
0answers
18 views
Bringing soft keyboard while coming from Home
In a edittext when I click on it Keyboard pops up. When I press Home key and again return to the application I find that keyboard has dismissed. is there Any way to bring up the keyboard as the last ...
0
votes
0answers
25 views
how to show copy option on default sharing dialog
I have a listview whose each list item has an export image . Now when i click this image it opens default sharing dialog usually opened when using using Intent with ACTION_SEND option.
But as i am ...
0
votes
2answers
130 views
Disable DONE in soft keyboard until minimum number of characters are typed in edit text
I need to keep the DONE button (imeOptions-->IME_ACTION_DONE) on android's system softboard disabled until the minimum number of characters are entered in the edit text. Any suggestions?
Note: ...
1
vote
3answers
90 views
onBackPressed method is not working properly
In my app there is one EditText. I have called keypad show on my activity for this EditText. keypad showing & working fine.
Now in currently, I have to press back button two time, one for hiding ...
0
votes
1answer
81 views
after pressing home keyboard is not hiding
I use following code to show keyboard
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,
...
-4
votes
2answers
38 views
Android hide keyboard on btn click [duplicate]
I want to hide keyboard on click event of a button. Any help would be appreciated
0
votes
0answers
46 views
Soft keyboard's extract view does not show text
Whenever I switch to landscape mode for editing text, the InputMethodManager takes over the entire screen (which is fine), however I can only see my keystrokes after I turn the device to portrait mode ...
0
votes
0answers
199 views
Adjust pan not Working When Edit text Height Mentioned in Android
i am usign adjustpan in activity it's scroll perfect when simple Edit text with single line but, it's not work properly in multiline edittext with height mentioned like below ediitext xml layout
...
1
vote
1answer
90 views
Custom Keyboard and default keyboard
Ok so I have a custom keyboard view that opens on touch event on a edit text but when i use it on a device the default keyboard shows and it overlaps my custom keyboard so i have to click back button ...
2
votes
0answers
130 views
Adding a character in auto complete textview is taking to google search screen android
I have a AutoCompleteTextview when I enter a character then sometimes it leads to Google search screen of android. I dont know y this is so.
Layout Declaration for AutoCompleteTextview is:
...
2
votes
1answer
63 views
How to set an background picture for an IME?
I would like to know how to display an image behind the keys. I have tried it like this:
<ImageView android:id="@+id/imageView1"
android:layout_height="wrap_content"
...
0
votes
3answers
94 views
View is not displaying when keyboard is displaying?
My app have login screen ,it is support landscape and portrait.It is working fine.My problem is keyboard is displaying when click on edit text in portrait mode is fine.Screen look like,
But ...
0
votes
0answers
14 views
Intregrate Font with SoftKeyBoard
I'm trying to build a SoftKeyboard for an android app. The characters to be shown on the keyboard are asian language characters and characters are not supported (displayable) in the android system ...
0
votes
0answers
53 views
Virtual Keyboard is behaving abnormally Android
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. Keyboard opens but my layout gets wrong i have only a ...
0
votes
3answers
79 views
Android: Launch Application on Lock key longpress Click
I want to invoke my application on longpress Click of lock key.
Actually the shut down dialog will appear.
I want to override that one.
Is this possible???
3
votes
2answers
40 views
How I can do scroll in view while keypad is open in android?
I have a number of edittext in scrollview and when they exceed the screen capacity, it is difficult to perform smooth scroll, when the keyboard is open.Here is my code.
<ScrollView
...
0
votes
2answers
223 views
Is there a way to launch voice input on the softkeyboard programatically?
The idea is to take a user voice input on the press of a button and pass it to the search inside the app. Because of device limitations we are using the SearchViewCompat instead of the useful ...
1
vote
0answers
68 views
Create custom keypad for regional language?
In my application I have made a malayalam (a regional language)keypad by creating a custom Xml file.An it shows malayalam word.But when I click I am not able to parse keypad values.It is showing an ...
1
vote
1answer
74 views
Keep the numeric keypad open through out activity life
I have a screen which asks user to enter PIN.
I have 4 separate boxes & each box will have only one digit.
So I want to keep the Numeric keypad open through out the life of an activity.
I am able ...
1
vote
1answer
815 views
Custom keyboard - Android
Is there any known combinations of inputTypes on an inputText that would give a Num-pad keyboard with special characters such as $, *, # and &. I am trying to allow the user to input a number and ...
0
votes
1answer
66 views
Notification for keyboard fires
Is there anyway to get a know when a keyboard (dis)appears?
Actually I'm trying to implement this
I haven't found anything which answers my question. I think I wasn't clear enough.
This
...
1
vote
1answer
120 views
Physical keyboard orientation
I'm wondering if there's a way to figure out what kind of a physical keyboard ("portrait", like e.g. Droid Pro or "landscape", like e.g. HTC Mytouch Slide) device has?
I would like to automatically ...
0
votes
2answers
31 views
Determine external keys present
Is there a way to check programatically what are the external keys present on my android device (eg volume keys , Power keys , Menu key). Different devices might have different external keys hence ...
2
votes
2answers
113 views
Activity with numeric keyboard
How to set Activity with numeric keyboard,I know that we can specify numeric keyboard for each controls like this
<EditText a:layout_width="0dip" a:id="@+id/priceTextBox"
...
0
votes
0answers
129 views
Change keyboard repeat rate in Android
I would like to change the external keyboard repeat rate settings from code.
Is it possible do do it globally for the android device, or is it an application specific feature?
Does anyone knows where ...
0
votes
1answer
146 views
how can i make my custom keyboard to show in fullscreen mode always?
I tried this How can I develop a custom "non-fullscreen" softkeyboard for tablets? to make it full screen mode but still its not full screen :(
And also i have tried the following in my ...
0
votes
2answers
248 views
Android: How to show the Special character or Alpha character keypad?
I want to show the Special character keypad as soon as Edittext get the focus... Please help in this
And also tell me how to show Alpha character keypad as soon as Edittext get the focus..
Thanks in ...
0
votes
1answer
280 views
How to change the Softkeyboard “Enter” button Text in android?
I want to set the softkeyboard to "Enter" key text to "Done".
Is there any way to change the text of the enter key of the softkeyboard of the android device? Please suggest if anyone have any idea.
...
0
votes
1answer
138 views
Android ListView Item Size Issue
Heres my issue, I'v got 2 activities, one that holds a Listview and an add button that calls another activie that hold a listview and a search pannel, when the user searches a product and press's it, ...
0
votes
0answers
213 views
Creating Custom keyboard service for android in my personal application not for default phone
I tried to create a custom keyboard for my application only
I inflated the xml layout using keyboard class .
My problem is
1. when i am pressing shift key in keyboard capital letters are showing but ...
0
votes
1answer
31 views
remove view keypad [duplicate]
Possible Duplicate:
Close/hide the Android Soft Keyboard
I'm a beginner, and have written a simple program to find the roots of a quadratic equation. Entering values in the EditText fields ...
-1
votes
3answers
260 views
How to disable software keyboard in EditText view and make cursor visible at same time in Android 4.0+?
How to disable software keyboard in EditText view and make cursor visible at same time?
I try all examples on stackoverflow and get two cases:
1. keyboard is hidden, cursor is hidden
2. keyboard ...
0
votes
1answer
45 views
Googles samplesoftkeyboard
I just load Android Sample project "Samplesoftkeyboard"
I edited symbols.xml into my custom like pattern
now the problem is
if user pressed some combination of keys i need to display some ...
1
vote
1answer
219 views
How to change keyboard key-shift button indicator color in android
I want to change keyboard key-shift indicatorcolor. key showed below.
Default color is green i need to change it as red what i want to do!?
In this indicator glows green i want to change that green ...
0
votes
0answers
138 views
Android Custom Keypad
I have a planned to create a custom keyboard
Here, I added list of classes i used
BasicOnKeyboardActionListener http://pastebin.com/s3jmfS4K
CustomKeyboardView http://pastebin.com/Td3g3mUu
...
4
votes
1answer
66 views
how to open the key board inside layout in android
i need to open the keyboard inside my layout where i have an edittextbox see the image below
in this image
pink-header and footer
brown-edittext
blue-whole layout
red-keyboard
anyone help me ...







