We have created a mobile view page on my website which show a text-area towards the bottom of page. In most of the mobile-devices/browser, the page work fines and the text-area is slides up when keyboards comes up.
But, in HTC One V (Android 4.0.3) default browser the text-area does not shift up and hence is hidden behind the keyboard, so user can't see what he is typing. Though on same device using chrome it is working fine.
Please note that this works correctly in default browser in android 4.1.2 (Galaxy S3)
Any help to solve this issue would be appreciated.
EDIT:
This is mobile view for a website not an android app.
You have to specify the android:windowSoftInputMode="adjustResize" in your Activity
You should addandroid:windowSoftInputMode="adjustResize" in Manifest file which will resize the window or adjust the window accordingly.
For xml solution: Visit my this answer
Related
I am using OpenSeaDragon to show images on my website. With the desktop browser everything is working correct. Also in device mode with the DevTools from chrome. But when I switch to a real mobile device, I can't change to fullscreen mode.
The view try to expand, the buttons slide to the top, but cancels itself immadiately.
I have build a small Android application with a webview to access the website.
I even don't know, if it is a Android issue or an OpenSeaDragon issue. Any hint what I should check could be helpful.
Thanks in advance
On Chrome or Opera on Android if I try and type into an IText (by tapping on it to activate editing mode and the cursor as normal) which I've added on my canvas, the system keyboard appears as expected but after about half a second disappears again, so typing isn't possible.
On the native Android browser, the keyboard appears, then switches to uppercase, then the browser address bar becomes active. If you then tap again in the IText the system keyboard switches back to lower case and you can type in the IText normally.
I'm using latest FabricJS on Android 4.1.1 on a generic tablet. My website also uses JQuery and Bootstrap.
Anyone seen this before? Any idea how to solve!? I've run out ideas...
Thanks
I am running my web application built in using HTML5 on the android browser.
I have one search box on my home screen.
Whenever I tap inside the search input box the virtual keyboard appears and the application is shrinks and resizing with whatever available place above the keyboard.
This behavior I have seen on samsung galaxy tab (3.1), samsung galaxy note (2.3.6) and samsung S3(4.0)
But, if I run the same web application on the HTC desire(2.3.5) or even HTC evo 3D, the keyboard appears above the app and the application does not shrinks.
I am looking if there are any setting for web browser on android.
I know there are manifest file settings like resize pan and other for android hybrid as well as native application but I want to know if there are any settings for normal web application running on android browsers.
Try
android:windowSoftInputMode="adjustResize"
in your manifest file.
You might need to use android:windowSoftInputMode="adjustResize|adjustPan".
Place this code in the activity under application , where u want such setting
When I tested my site on Android phone I have noticed that I can't edit content in CKEditor, the keyboard does not appear.
I have testes on iPad, Android Tablet, all works, but not on phone. BTW, I have tested standard browser and Dolphin too, problem in both.
How can I fix this problem?
You can show the keyboard by keeping the menu button pressed for a little longer.
I have created one application using webview. In Webview i have loaded one mvc page. that has two text boxes for getting username and password. While focusing textbox, textbox and keypad is blinking more on the Device Samsung Ace GT S5830. It is working good in IPAD, IPOD, IPHONE and WINDOWS PHONE. Please anyone tell me how to stop this blinking?
Hi this is the issue with Android. We have workaround for solving this by setting the below in the AndroidManifest file.
android:windowSoftInputMode="adjustPan"
Now the keyboard blinking issue is resolved.