Android : Soft Keyboard In Fullscreen / Extract Mode
Sep 11, 2009
When Android is in portrait mode and the soft keyboard IME is shown, my app is resized properly. When in landscape mode, the soft keyboard IME is always in fullscreen/extract mode, and even though I can see the top portion of my app, it doesn't resize my app. I couldn't find any way to make the IME not come up in fullscreen mode. So instead, I detect this condition, and manually resize my app. This works, but unfortunately, to make this work well, I need to know the height of the IME, or the portion of my app that remains visible. But it seems there is no way to get this information, and the soft keyboard IME's height varies on different devices. As a hack, I put in options for the user to be able to adjust these parameters, and set the defaults for the G1. I can live with this for now, but is there a more appropriate way to handle this?
In addition, even in portrait mode, if the status bar is hidden, the IME also does not resize my app. This clearly seems like a bug to me.
View 6 Replies
Jan 13, 2010
I want to have this result : https://docs.google.com/a/google.com/File?id=afzfgn3h3x_10dwd35pv4_b but in portrait mode. the EditText take all the screen with the keyboard. How can I do that?
View 3 Replies
View Related
May 5, 2009
I tried a lot of ways with no luck.
View 2 Replies
View Related
Oct 28, 2009
If you enter recover mode on a HTC Magic, for example (holding down HOME+POWER buttons) you do not have access to the keyboard to continue. After the Recover Mode tirangle icon has appeared, press HOME+POWER again and that will bring up a menu for you to reboot the phone, update, or factory resets. use the trackball to select which option you want.
View 2 Replies
View Related
Dec 14, 2009
I've been experimenting with the IMM and it's mostly straightforward, but for some reason, my custom view that launches the soft keyboard works only in portrait mode. Launching it is easy enough:
InputMethodManager imm = (InputMethodManager)getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInputFromWindow(getWindowToken(), InputMethodManager.SHOW_IMPLICIT, 0);
I've seen a couple notes about the soft keyboard only working in portrait but I assume this was a limitation in a previous version, since all the Android EditText views work fine in both portrait and landscape. Is there some additional piece of work needed to enable landscape?
View 2 Replies
View Related
Feb 18, 2010
I would've been happy as a passive forum user and keeping up with other's posts but my Hero has recently developed a problem, prompting me to sign up and get some advice from you guys who have more experience.
Basically in the last couple of days my soft keyboard has randomly decided to change how it displays and works! 3 main problems:
- sometimes soft keyboard does not go into landscape mode when phone is orientated (seen suggestions on here of calibrating keyboard and installing bubble and running the bubble clibration: tried both of these but has not solved problem).
- when phone does decide to let me in landscape mode no text is displayed as you type....only when you switch back to portrait do you see what you have typed
- when in text message mode the predictive text box has moved and is now being overlayed on the text message body, so basically i cannot see what i am typing! (the predictive text box used to be displayed above the text message body). This problem is the most annoying out of the two!
View 6 Replies
View Related
Jun 13, 2009
Is there a way to hide the window title so that it won't get shown in fullscreen mode.
View 2 Replies
View Related
Jun 12, 2010
I'm using the android mediaplayer to display videos and i try to implement two modes:
The first one is a simple fullscreen mode which scales the video to the maxiumum maintainable aspect ratio. Depending on the video size there are black bars on top/bottom or left/right. The second mode should scale the video to fill the full screen but to keep the aspect ratio. That means either the width or the height has to be cropped.
And that is the problem. How to crop a video? For ImageView there is a scale type "crop_center" which crops the image on a predefined rectable. Is there a similiar solution for video? If i set the surface view to a bigger size than its parent container the surface view is automatically scaled to fill parent. Next try was to set negative margins in the parent layout but in vain. Another try was to place the surface view in a scrollview which also leads to strange behaviour. Any ideas?
View 3 Replies
View Related
Aug 13, 2010
I would like to play around with some ideas and develop a soft keyboard for Android to replace the default one.
Is there any general information about soft keyboard development for Android out there?
Any best practices or guidelines?
Can I do with my keyboard application pretty much anything I could do with a normal Android application?
Can I do HTTP connections to synchronize keyboard data with a cloud DB and other phones I have?
Can I open other windows/screens from a key press, e.g. to display a custom input interface different to a normal QWERTY one. If that doesn't work, can I use a pop-up dialog instead?
View 3 Replies
View Related
Oct 13, 2010
I have a tabbed view with one Activity per tab, and when I switch from the first tab, which has a TextView, to the second tab, which only shows a clickable list, the soft keyboard is still there. I want it to go away.
I tried this:
CODE:.............
But this does not work, because there is no relevant view to provide, as there is no View on the screen that takes keyboard input.
View 1 Replies
View Related
Jun 22, 2012
I'm using an MK802 mini PC. I don't have a USB keyboard yet.
When I plug in a wired USB mouse, I can use that to click on the on screen soft keyboard.
But when I plug in the wireless dongle for a USB mouse, the Android soft keyboard doesn't show anymore (I guess this is because the wireless dongle supports both keyboard and mouse, and tells Android a hardware keyboard is available, so Android doesn't show the soft keyboard).
Any way to ignore this and always show the soft keyboard? Or another keyboard I can download which will always show?
View 1 Replies
View Related
May 15, 2012
I tried to extract the Swiftkey (keyboard application) apk and change its resource images.
when i tried to install it back adb throws an error "install parse failed no certificates". how to get over this?
View 6 Replies
View Related
Aug 4, 2010
I have a layout which has one large EditText view at the top + a bunch of buttons at the bottom. The EditText is made to shrink and expand when the ime is activated/deactivated by using adjust_resize. The buttons at the bottom are pushed up above the ime.
I would like to hide these buttons when the ime displays, to provide enough space for the EditText view.
I have so far tried the following:
subclassed EditText and provided the activity the option to register a callback on the view's OnSizeChanged.
Used this callback to change the visibility of the buttons (actually the layout container) to GONE.
This work OK and does hide the buttons when the ime pops up. However, the EditText does not expand into the new available space. Furthermore, when the ime is disposed off, the EditText field is now bigger than it was originally, pushing (the now showing) buttons outside the screen.
I should also add that when typing the first letter into the view, and the ime displays the word options, the screen is redrawn and the EditText fills the vacant space. how to get this to work? Or even better, is there a simpler solution to my requirement? In my view, scrolling is not a good option.
View 2 Replies
View Related
Nov 12, 2010
I have an EditText control that does not pop up the soft keyboard when the user touches it. The thing is, that I have a number of other EditText controls elsewhere in my application that all work fine, and I cannot see anything really different about this one.The code is a bit complex to post here, but I was wondering if anyone knows of any reasons why the soft keyboard would not appear in some cases.
View 3 Replies
View Related
Mar 29, 2010
I am interesting in integrating an arabic keyboard to the android system. I proceeded as follows: I have modified the xml and the layout in the package softkeyboard by replacing English letters and their codes by the arabic one.Of cource I created 2 new directories in softkeyboard: xml-ar and layout-ar After rebuilding the system , I don't find the new softkeyboard.
View 4 Replies
View Related
Jun 24, 2010
I have One AutocompleTextView and I want to make the virtual keyboard disappear when he hits "DONE" at the AutocompleTextView. So far, the buttons "NEXT"/"DONE" do nothing at all Unfortunately I found no resources addressing this problem.
View 1 Replies
View Related
Jun 28, 2010
I've got a problem with my application in that the soft-keyboard is not being closed unless the user pushes the "back" button.I use several layouts which I load using the setContentView method of the application. Some layouts contain multiple EditText fields. The soft-keyboard pops up correctly when the entry boxes are being clicked, but never gets dismissed, even after I switch to a new layout using setContentView (instigated by on-screen push buttons).I found a way of apparently removing the keyboard using the "InputManager" class but how exactly does that work if I don't know which entry field opened/currently owns the keyboard?Is there a way of possibly invalidating a whole layout which would perhaps cause all resources (and hopefully the keyboard) to be cleared? As said before, I currently just use setContentView to load the next screen.
View 4 Replies
View Related
Jan 25, 2010
How can I select what soft-keyboard an edittext will load?
View 3 Replies
View Related
Jun 24, 2010
if application has EditText widget and user clicks on it, a qwertysoft keyboard appears. how do you get a numeric, 12key, or phone soft keyboard to appear instead. (I have searched documentation but I cannot find solution.)
View 2 Replies
View Related
Oct 20, 2009
How can I set numeric-only soft keyboard option for a text field? When I set the input-type to "number" it brings a soft keyboard which is actually a alpha-numeric one but already switched to numeric mode. What I want is a pure numeric soft keyboard with big numbers (no alphabets at all). I've already seen this in other applications and but don't know how to do it.
View 6 Replies
View Related
Apr 24, 2009
I have a form that is working fine with the "Next" flow order when using the computer keyboard with emulator (and probably with the keyboard on the G1) but not with the SoftKeyboard with 1.5.Some fields indicate "Next" with this keyboard, some go to the correct field and others don't.Two of the fields are text and they only give a carriage return instead of "Next."My numeric fields give the proper "Next" key. Use of the SoftKeyboard is a little underdocumented so far (if there is a hidden doc online somewhere please provide me a link to it). There are also some added fields under 1.5 that I have asked about previously but received no answer.These appear to have something to do with the Soft Keyboard.Though these can be set programmatically I haven't seen the proper way to set these flags using XML. This field is the one that replaces "Numeric" which deprecated.
View 3 Replies
View Related
Jul 13, 2010
So Sony appears to have included their own IME with their xperia phones.I have an edit box for numerical input that i have specified as number numberDecimal|phone It allows for easy number entry and allows users to enter in decimal numbers.However the IME in the xperia phones is missing the decimal key. Is there a way to specify it should only be using the android IME?Can I specify resources for specific phones similar to how I can control resources for versions of android?
View 9 Replies
View Related
May 10, 2009
is there a way to enforce the soft keyboard throughout the lifetime of an Activity? I tried setting stateAlwaysVisible in the Manifest.xml as well as the counterpart.
View 6 Replies
View Related
May 29, 2009
This is probably very easy but I just don't know how to close the Soft Keyboard after user hits "search" key on the soft keyboard.Could someone help me out?Currently my code listens for key press particularly enter or the search key.
View 5 Replies
View Related
Apr 29, 2009
How do i disable the SoftKeyboard?
View 3 Replies
View Related
Aug 29, 2010
how to use the IMF to design a soft keyboard. Please point me to some resources that will help me understand how to do it from the ground up. Something other than the SDK sample
View 4 Replies
View Related
Dec 13, 2009
Is there a way to create an app specific soft keyboard on Android? After reading about InputMethodService docs and checking out alternative keyboard apps out there, I figure the alternate keyboard can only be configured for system wide usage (through Settings -> Locale and Text).
If the answer to above question is no, then is there at least a way to load a custom dictionary and override the default dictionary of the system keyboard (only when my app is in use)? That will help in giving very relevant suggestions to the user when he has only tapped couple of keys.
View 1 Replies
View Related
Jul 9, 2010
I am developing an android application where we are using WebView to display Web page being served from Web Server. Everything is working fine except with the problem that when i am using the soft keyboard and switched to numeric key entry and move from first field to next field, the keyboard layout automatically changed to alphanumeric.
Is there any way using which i can pull up virtual keyboard in numeric mode only when i need to enter numbers only?
View 2 Replies
View Related
Apr 20, 2010
I have a custom View which accepts onKeyDown and onKeyMultiple events. Works well with Android soft keyboard, but it has issues with HTC soft keyboard, like the one found with HTC Hero. Specifically, problem is when a user selects an "alternate" key from a small pop-up window following a long-press on a key. With Android soft keyboard, my View is receiving onKeyDown event only from a selected alternate key. With HTC soft keyboard, onKeyDown event is received for both the original key (the one that was long-pressed), and the alternate key selected from a pop-up menu. I can't figure out a way to determine if certain key events need to be cancelled or not. (I am dealing with Android 1.5).
View 3 Replies
View Related
Nov 4, 2010
In my android application, I need number and letter key in the same view, not need number and letter switch key. for example let it looks like computer keyboard, Is it possible to do it?
View 2 Replies
View Related