The android-input-method tag has no wiki summary.
7
votes
6answers
1k views
Android AdMob causes memory leak?
I've integrated AdMob v4.1.0 into my application and it seems to have caused a huge memory leak (pretty sure that it already happened on 4.0.4).
In order to isolate the problem I created a new ...
7
votes
1answer
3k views
Disabling the fullscreen editing view for soft keyboard input in landscape?
On Android devices that use soft keyboards, I want to prevent the fullscreen keyboard editing view (shown below) from appearing when in landscape mode (i.e. I want to see only the soft keyboard itself ...
5
votes
1answer
396 views
Android keyboard layout language
Writing a dictionary application for android.
Want to set translation direction in accord with current input language (to be more precise, language of letters displayed on soft keyboard). For ...
4
votes
1answer
893 views
Custom inputType / key set for Android soft keyboard
I'm looking into changing bits and pieces of Android's input methods, to enter coordinates specifically.
The keys/characters needed are 1234567890.-:
When choosing numeric signed and decimal I have ...
4
votes
3answers
1k views
How to add own custom IME at Select Input method dialog
I'd like to show my own IME in the Select input method chooser dialog like the Japanese IME and the Chinese IME. How can I do that?
I am new to Android. I have tested Greek IME and other IME. ...
4
votes
2answers
834 views
How to determine the current IME in Android?
I have an application where I would like to warn the user if they are not using the default Android softkeyboard. (i.e. they are using Swype or some thing else).
How can I check which input method ...
3
votes
1answer
132 views
How does Browser (and some other apps) intercept the the Back key before my IME?
I've written an IME that displays some popup windows and closes them when the user clicks Back. It works 99% of the time but some apps (like Browser) are able to intercept the KeyEvent.KEYCODE_BACK ...
3
votes
1answer
842 views
Looking for tutorials/examples on creating fullscreen IME in Android
I am currently trying to develop a fullscreen input method for Android, but I have a hard time finding any hints on this. The only examples and tutorials to be found are for non-fullscreen IMEs and ...
3
votes
2answers
2k views
Input Field With Custom Input Method
I would like to show a custom input field (specifically, one containing only 9-0 and two extra buttons containing decimal separator (, or .) and a delete button).
I could create a custom IME, but (as ...
2
votes
4answers
317 views
permission denied when I try to startService
I am trying to access an InputMethodService from an Activity, and I am running into issues with the permissions. This is for a custom keyboard app.
What I am trying to achieve is to bind the text, ...
2
votes
1answer
235 views
EditText on InputKeyboard launch Creating IME in android
I am creating my own IME for device. What I need to add is a TextBox above keyboardView as shown in below image. Although I am able to display it as shown in below image but I am unable to write text ...
2
votes
1answer
113 views
Better way to get all the text in an EditText from an InputConnection?
I've written an IME (InputMethodService) and I need to get all the text from the EditText it is editing. I know one way:
InputConnection inputConnection = getCurrentInputConnection();
...
2
votes
1answer
224 views
Convert unicode value to KeyEvent constant in OnKeyboardActionListener.onKey
I am new to Android development and currently programming an Input Method Editor (IME) for the Google Android operating system (API level 11 == version 3.0).
(The following code is simplified to ...
2
votes
1answer
452 views
Android: Non-Keyboard IME
Im trying to create an IME for android that is not a traditional keyboard (rows of keys corresponding to the different letters) and I am having trouble finding helpful resources on how to do so since ...
2
votes
1answer
307 views
How to show the soft keyboard on device with hard keyboard when hkbd is closed?
I have the corollary question to my first (solved) question, SO Android show softkeybard ...
With the sliding keyboard closed, I want my activity to show the keyboard when it gets started.
The same ...
2
votes
1answer
423 views
Android:I need a slide in calculator type soft keypad a la iphone
I'm attempting to replicate on android an iphone app my company had developed externally.
My need is simple but it seems hard to achieve under android. I have three numeric edittext inputs. Each ...
2
votes
3answers
1k views
Android IME: showing a custom pop-up dialog (like Swype keyboard) which can enter text into the TextView
I'm wondering how I can create a custom pop-up like the one in the screenshot below (borrowed from the Swype keyboard), where I can have a couple of buttons, which each commit a string to the ...
1
vote
0answers
28 views
Can I override the way the Android Input Method handles autocomplete and autocorrect?
I'm making my own text editor, and I want paragraphs to always have extra space between them, so I've overridden EditText's OnKeyListener so that when Enter is pressed two newlines are inserted into ...
1
vote
1answer
48 views
Send touch screen event to foreground activity (only from APK)
I am trying to send touch events (clicks and motions) to the foreground application from an application with system privileges (standard upload, not rooted)
I was able to run shell scripts emulating ...
1
vote
1answer
65 views
Get pointer to onscreen keyboard view on Android
I am working to tint all UI elements reddish in an astronomy app. I have successfully done this for basically everything except the onscreen keyboard. I need to get a reference to the keyboard's ...
1
vote
3answers
594 views
Android: Deleting characters in EditText with TextWatcher still shows characters in suggestions
In my activity I have an EditText to capture a file name. I am using a TextWatcher to prevent users from entering certain characters that I don't want them to use in their filename. Essentially I only ...
1
vote
0answers
92 views
Is it possible to have both Physical Keyboard and Soft Keyboard active at the same time?
My Application needs to have two sources of input active at the same time: A bar-code scanner and the soft keyboard. When I pair a blue-tooth scanner, it is being treated as a physical keyboard. So, ...
1
vote
0answers
267 views
Send a key combination (meta key and keycode) via the Android API
I can't figure out how to send a combination of a meta key (e.g. CTRL) and a keycode (e.g. for RETURN) with Android (I am using API level 11 = version 3.0).
The documentation of the class KeyEvent ...
1
vote
1answer
53 views
Get whole text before the cursor
I need get whole text string before the cursor in my InputMethod class. getTextBeforeCursor() gets only "n" characters, but I don't know text's length.
1
vote
1answer
310 views
Change android input method for WebView
I have a WebView that loads a webpage with a form and would like to use the most basic keyboard possible in order to conserve screen real estate if they are using the onscreen keyboard as their input ...
1
vote
1answer
304 views
View-specific IME?
I have a custom view for which I want the user to be able to enter characters from an app-defined set of characters. To do this, as I understand it, I need to write an input method service. The user ...
1
vote
2answers
2k views
Android show softkeyboard with showSoftInput is not working?
I have created a trivial application to test the following functionality. When my activity launches, it needs to be launched with the softkeyboard open.
My code does not work?!
I have tried various ...
1
vote
1answer
196 views
How the input method can request 'updateCursor' event?
we are implementing custom input method service and we are interested
in receiving cursor update events. The documentation of
InputMethodSession's updateCursor() says:
"This method is called when ...
1
vote
2answers
537 views
I'm making an Android IME. How do I add a “Settings” list item in the “Language & Keyboard” settings screen?
... like "Swype settings" in this picture. Been searching for hours on how to do this. Going to go insane. Help appreciated.
1
vote
0answers
270 views
How to disable Chinese Input Method when sign in or sign up?
There is "android:inputMethod" atrr in EditText, but I can't find any way to catch it.
1
vote
1answer
635 views
Android: Determine active input method from code
How do you determine which input method is currently active - A user can change the input method (soft keyboard) by long pressing on a text edit field - From code, how does one determine which input ...
0
votes
2answers
69 views
popup window closing service
I am trying to show a PopupWindow within an InputMethodService, but when I show it using this code:
LayoutInflater inflater = ( LayoutInflater ) getSystemService( LAYOUT_INFLATER_SERVICE );
pw = new ...
0
votes
0answers
38 views
error dismissing custom keyboard in honeycomb
I have a custom keyboard for the Android phone, and I am trying to port it to the Android Tablet. I am running into a few issues with the Honeycomb OS. When I try to dismiss the keyboard, I get this ...
0
votes
2answers
73 views
weird Logcat output when dismissing custom keyboard
I am have a custom keyboard app, and I get this LogCat output about 1/4 of the time when I press the back button to get out of it:
12-19 13:18:13.908: W/InputMethodManager(361): IME died: ...
0
votes
1answer
112 views
Hide soft keyboard from input method service
I am trying to hide my soft keyboard from an InputMethodService, and it isn't working. Here is the code I am using in my onFinishInput() method:
InputMethodManager im = (InputMethodManager)
...
0
votes
3answers
433 views
android:windowSoftInputMode=“adjustResize” doesn't make any difference?
I have a faux dialog which uses this layout:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
2answers
83 views
Updating calculated values in Android layouts using SeekBar
So, I've been working on an app that has a Plan model with a number of different inputs and outputs, and the layout of the app has slider controls for the inputs and labels for the outputs. When an ...
0
votes
0answers
39 views
Input song information on Mp3 Music Download using voice command
Please I have the app "Mp3 Music Download" on my android phone and instead of typing the song information and searching for it, I want to use voice input system. Since the application does not have ...
0
votes
1answer
59 views
InputMethod Hides the EditText
As shown image in above I have four tabs below videoview Resume , Produits ,Persos, Talk.
When I click on Tab a new corresponding activity is launched below the tabs.
Now as shown in Image current ...
0
votes
1answer
38 views
Could somebody explain how to use TYPE_INPUT_METHOD_DIALOG?
I want to create a simple dialog box (e.g. EditText and a button) when I press a key of the softkeyboard.
WindowManager.LayoutParams
0
votes
0answers
73 views
How do I make an IME's input view transparent to touch events?
I'm writing a full screen InputMethodService for android but there's a lot of transparent space in my input view. Right now it blocks all of the touch events from reaching the underlying activity. How ...
0
votes
0answers
76 views
Add Superscript to Virtual Keyboard on Android
I am creating my own IME. In order to achieve this I am using the InputMethodService. Now wish to add superscript as well for each and every key. So for achieving this do I have to implement the ...
0
votes
0answers
143 views
Add buttons on Custom Keyboard IME in android
I wish to add custom buttons to the android IME. So I have created an InputMethodService extension as done with soft keyboard sample from code samples. But in SoftKeyboard sample a candidate view is ...
0
votes
0answers
66 views
Android: how to synchronize InputMethod with InputMethodSession?
I'm struggling with a problem i can't find a way to solve. Here's the story.
I have an input method. Input method is to certain extent automatic, that is, it synchronizes input on a device (say: ...
0
votes
1answer
118 views
Making an EditText object accept only numeric values
I'd like to create programatically an EditText within this attribute:
android:inputType="number|numberSigned|numberDecimal"
In brief I'd like it to accept only numeric values. How do I have to set ...
0
votes
2answers
118 views
Softkeyboard pops up automatically first time the webview loads
Apparently there are no editboxes or anything which needs a keyboard on the webpage either.
and this dos'nt work either even on user interaction event.
public void onUserInteraction()
{
...
0
votes
0answers
63 views
Input method is unable to get the action from Done button in android
I am trying to create an Input method, for which i am using
softkeyboard example provided by the android sdk.
I install my application (apk file) on a samsung device (android
2.1 sdk).
In the device ...
0
votes
3answers
217 views
android input method problems
A few questions about android:
Is it possible to replace the keys in default keyboards ? For example, is it possible to replace the dot in the numeric keyboard with a comma ?
I wrote a very simple ...
0
votes
1answer
65 views
How to choose a file in Android?
I use the code below to do the operation.
Intent action = new Intent(Intent.ACTION_GET_CONTENT);
action = action.setType("*/*").addCategory(Intent.CATEGORY_OPENABLE);
...
0
votes
0answers
354 views
Dual Joystick IME
I am trying to create and Android IME that utilizes two joysticks as part of the input process. I found a group of open source widgets Here that have both a single and double joystick widget that are ...