HTC Desire :: Swype Hide Keyboard
May 5, 2010
I'm using the Desire, and I've just discovered Swype, which I love.Except for ONE little thing.How the hell do ya get the keyboard to disappear so you can hit the 'send' or 'save' button which is lurking below it?With the default keyboard, you have a button dedicated to hiding the keyboard, but Swype doesn't appear to have one of those.
View 49 Replies
Jul 1, 2010
I may be missing something here, but I can't see a way of calibrating the Swype keyboard for when you need to tap individual keys instead of swyping as usual. On my Desire the keyboard is well out of alignment. Can anyone help? Swyping itself works a dream
View 5 Replies
View Related
Jun 30, 2010
I've been looking for Swype, ShapeWriter etc online and just can't seem to find it fo rthe desire anywhere.
Anyone have any ideas?
View 4 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
May 15, 2010
So I just got the Swype beta, and I have a small problem. If I ever decide to cancel typing (say I have text input open and the Swype keyboard is covering the bottom half of my screen) the keyboard stays open and I have to tap home again for it to disappear. Are there any workarounds for this or is it simply because its beta? I noticed that even if I revert back to the default Sense keyboard it does the same thing.
View 1 Replies
View Related
Apr 28, 2009
Using the 1.5 SDK. I have an application with a TabActivity and when I change from one tab with edit fields to another that does not need any user input I would like the virtual keyboard to be hidden. I've tried setting android:windowSoftInputMode="stateAlwaysHidden" on the manifest for the activity that doesn't need user input but it didn't work (maybe because the activity is triggered by a TabActivity).
I've found the method hideSoftInputMethod(IBinder, int) in the InputMethodManager class but I don't know how to get the IBinder object that this method needs.
How do I get that IBinder object? Are there other ways to hide the soft keyboard?
It would be even better if I could make the soft keyboard automatically hide when an EditText loses focus.
View 18 Replies
View Related
Oct 4, 2010
I need to be able to hide the soft keyboard in response to clicking a button. I have seen numerous posts on this subject and it seems that the solution is to use the InputMethodManager, but I have been unable to get it to work for me.
View 1 Replies
View Related
Jan 3, 2010
I don't want to show the virtual keyboard. I tried the below method but it doesn't make any difference.
View 2 Replies
View Related
Aug 5, 2010
I am struggling with the done button on the soft keyboard. I can't get the soft keyboard Done keypress to hide the keyboard. From another button, it works perfectly with imm.hideSoftInputFromWindow(editText.getApplicationWindowToken(), 0);
but the onKeyListener does not function the way I want. When I hit the editText, the soft keyboard shows up and its content is cleared from characters. The main.xml:
<EditText android:id="@+id/answer"
android:layout_gravity="center_horizontal" android:textSize="36px"
android:inputType="phone" android:minWidth="60dp" android:maxWidth="60dp" />
The Java file:
private EditText editText;...
editText = (EditText)findViewById(R.id.answer);
editText.setOnClickListener(onKeyboard);
editText.setOnKeyListener(onSoftKeyboardDonePress); ...
// method not working: private View.OnKeyListener onSoftKeyboardDonePress=new View.OnKeyListener() { public boolean onKey(View v, int keyCode, KeyEvent event) {
if (event.getKeyCode() == KeyEvent.FLAG_EDITOR_ACTION) {
// code to hide the soft keyboard
imm = (InputMethodManager) getSystemService( Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editText.getApplicationWindowToken(), 0); }
return false; } };
private View.OnClickListener onKeyboard=new View.OnClickListener() {
public void onClick(View v) { editText.setText(""); } };
The working method using a button (in the same java file):
private View.OnClickListener onDone=new View.OnClickListener() {
public void onClick(View v) { ....
// code to hide the soft keyboard
imm = (InputMethodManager) getSystemService( Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(editText.getApplicationWindowToken(), 0); } };
When I press key no "9" the keyboard hides.
View 2 Replies
View Related
Jul 10, 2009
I'm having an EditText and a Button in my layout. After writing inside the edit field and clicking on the Button, I want to hide the virtual keyboard. I guess there should be a simple, one- or two-liner to make this happen. Where can I find an example of it?
View 5 Replies
View Related
Nov 1, 2010
I have a pretty standard search edit widget on top / search results list widget on bottom activity in my app. Below the results list widget I also have my view for ads. When the soft keyboard is brought up in this activity, I'd like to hide the view the ads are in because they consume too much screen space. I tried making that view android:isScrollContainer="true" but that had no effect.
So the question is, how can I ensure that certain views will be hidden when the soft keyboard is brought up?
View 3 Replies
View Related
May 9, 2010
I'm developing on the Droid Incredible (and have tested on a 1.5 AVD Emulator as well), and one of the tabs in my tab widget consists of a listview and a row with an EditText and a Send button (for a chat feature). I am using the following to close the soft keyboard once I click Send, but it's not working. This is identical to code I've found elsewhere that people have upvoted as correct.
See anything I'm missing?
CODE:.......
I also tried changing the flag to 0. No luck. Anyone know what's up? Just realized I was originally using hideSoftInputFromInputMethod() instead of hideSoftInputFromWindow(). Changing it didn't make it work though...
View 1 Replies
View Related
Nov 2, 2010
For an EditText view i can use setInputType(InputType.NULL), but an web view doesn't have it. I tried the rest of the solutions posted on stackoverflow but none of them worked for a web view.
View 1 Replies
View Related
Nov 18, 2010
I won't want to show virtual keyboard even user touch the editText field.
View 1 Replies
View Related
Dec 15, 2011
I've been using Go SMS Pro recently mostly since it can display emoji. But i've noticed one really annoying thing is how the keyboard auto hides every time i send a text. Is there any way of preventing this from happening?
I'm running ICS on a galaxy nexus, the keyboard im using is swiftkey X.
View 1 Replies
View Related
Oct 6, 2012
Any way to do this? its really annoying that it stays open.
I am on cm10 using the stock keyboard
View 3 Replies
View Related
Nov 24, 2010
Swype Keyboard for Evo Installation Problem:Installing Astro File Manager is easy. But when I'm attempting to download evo swype.apk, it doesn't work.I can open up Astro File manager to show my downloads, but only a .bin file that's 1.77 mb in size is being downloaded.Do you have any ideas how to get past this so I can actually download the Swype keyboard onto my Evo?
View 4 Replies
View Related
Apr 20, 2010
I know I saw this somewhere, but couldn't find it. Anybody have a zip or some sort of file to get the keyboard back from 1.5 onto the 2.1 ROMs? Not having the button to minimize/hide the keyboard is bugging me and I hate the swipe to hide.
View 4 Replies
View Related
Feb 26, 2010
When i enter text in it and press button to save data. keyboard does not disappear. can any one guide me how to disappear keyboard?
View 2 Replies
View Related
Oct 25, 2010
Besides swype because i have a strong feeling a lot of people will say that off of the back, what is your favorite keyboard app to use?
View 6 Replies
View Related
Jun 26, 2009
How can I hide the suggested words or turn off auto complete for the virtual keyboard?
View 9 Replies
View Related
Aug 9, 2012
I'd like to have the following:
In Portrait mode: normal size keyboard in Landscape mode: big size keyboard, should use about 70 -80 % of the screen.
Currently I am using Hackers Keyboard, 4 Row, 70% size. There are 2 lines left to see, when typing.
Is there a way or an app so the android status bar (clock, battery, etc) is hidden when turning the phone from Portrait to Landscape so the whole screen can be used for typing?
ZTE Blade,
Swedish Snow
Android 2.3.5
View 1 Replies
View Related
Sep 3, 2010
I reinstalled Swype after the upgrade... how do I get the keyboard again? I went to settings and language & keyboard and checked swype. I forgot how I got it to come up the first time I installed it.
View 2 Replies
View Related
Aug 30, 2010
I am wondering if Swype is still available to download and if so, where? I thought it was on Market but guess not. is this free? I have tried Ultra Keyboard that allows you do to typing OR tracing, and tracing seems to be very similar to this Swype concept. Has anyone tried this?
View 49 Replies
View Related
Jul 26, 2010
I've checked all the forums and have only found people who are reviewing, praising or comparing the Swype Keyboard. When I got my EVO I heard great things about Swype and how Sprint was making it their official keyboard. I have read that the Samsung Epic 4g will come preloaded with Swype, however, I've yet to be able to find an APK for Swype that works. I downloaded Shapewriter when it was available and now have that which I enjoy using but I plan on swapping out my phone for the White Evo (I know its the same thing but my bf prefers the black over the white) and even with Astro File Manager backup I cannot save the APK for Shapewriter. Where did everyone get Swype from? It is not in the market and the closest thing available now is SlideIT which is 5.99 Euro 7.75 US. I attempted to download the apk via torrents but ended up with a bunch of expired trial apks. Did I completely miss the time frame for this download? Does anyone know where I can get it? And what other Keyboards have you tried? I've done reviews on all of them accept Swype and Betterkeyboard. I found swiftkey to be a good qwerty in landscape with haptic feedback since theirs a lot of space between keys, and the Evos stock keyboard has the best T9 for portrait mode, and I think I like SlideIT better than Shapewriter which I hate to type on without swiping the keys. So my two questions are:
Where do I get Swype? and What is your favorite keyboard?
View 11 Replies
View Related
May 14, 2010
Posted this last night but it got deleted or something so I will try again. Here is a link to apk for a blue swype keyboard. This is not the keyboard that the keys turn blue when you press them, the entire keyboard is blue. Thanks to Sneakyfreak for making this and allowing me to share it.You have to uninstall any previous keyboards you are running on swype then install this apk to have it work.
View 16 Replies
View Related
May 5, 2010
Droid-Life has different keyboard colors which looks sweet, but they aren't compatible with the Incredible (they don't work in landscape). Anyone have some for us? Download: 5 Additional Swype Colored Keyboards | Droid Life: A Motorola Droid Blog
View 12 Replies
View Related
Jun 24, 2010
I love swype and am getting used to it. I have it set up as the default entry method in Hand cent, but I miss the microphone icon in the touch keyboard, because sometimes "speaking" a text message is convenient. Is there a short cut to use the voice input when using swype, or do I have to hold down on the text entry part and switch to "touch keyboard" each time? If you are using swype and can still use the microphone button, please let me know how.
View 12 Replies
View Related
May 20, 2010
I can't seem to get Swype to work on my desktop PC, I downloaded the app to my phone and everything but it's hard swyping on a physical keyboard. What will I ever do?
View 9 Replies
View Related
Sep 6, 2010
Was holding my phone a weird way, hit some buttons by accident and there were weird keys on there. Arrows, cut, copy, paste buttons. Don't know how I got there, would like to know how to get back though.
View 9 Replies
View Related