I have an issue with GWT Bootstrap Responsive NavBar on Android device as described below.
I am developing an application using GWT Bootstrap (version 2.2.1.0 & 2.3.2.0-SNAPSHOT) Responsive NavBar . When testing on my Android device, menu items in NavBar is collapsed. First, click on the menu, these menu items is shown on the screen. Click the menu again to collapse it. It works normally.
However, the issue when clicking the menu again, there are NO menu items shown.
I also try to open http://gwtbootstrap.github.io from my Android device, it has the same issue. See the screenshot below.
- Screenshot for the first click:
- Screenshot for third click:
This issue is on my Nexus 4 device, I am not sure whether it works (or does not work) on your Android device.
My question is whether it is GWT Bootstrap bug or Twitter Bootstrap bug? How to solve this issue?
Thanks
I had the same issue using Bootstrap v2.3.1 using the .less files. It took me a while but I realised this bug was only happening on my android devices in portrait view.
I fixed it by removing the following line of CSS on the .nav-collapse class, at the media query max-width:480px, in the file responsive-767px-max.less line 1064:
-webkit-transform: translate3d(0, 0, 0);
Related
I am using android jetpack compose and wrote some code that is being displayed in the preview section of android studio, but when I run the project and install the app in mobile then full content is not being displayed, only some little content is being displayed that is of previous code, but when I changed the code, then changes is being displayed in preview, but not in mobile. I searched for it but did not get any solution that why changes are not being displayed on mobile. Any help would be appreciated great!
Okay, I'm not sure exactly what you're dealing with, but I had a similar issue where the app doensn't show anything on both the device and emulator and this is what worked for me.
Running it from the preview solves it for me. Once you have a connected device, hitting the little run image(with a green play icon) on the top right corner of the preview pane will launch on the device or emulator. If you can't see this icon, scroll the preview pane all the way to the right.
However, to run your app using the normal run button on android studio, you need to make sure that your setContent{ } block inside onCreate is calling your Composable functions you declared earlier. This was the missing link for me as well.
I'm using Cordova to create an Android application.
I have noticed that when overflow of a div become visible (it is set to auto), the div become blur. This happens only on Android. What is the problem?
Click here to see screenshot
Click here to see the code
ok, so I'm using this plugin for a website I'm developing and I came across a tricky bug. the menu won't work on android on landscape orientation. when one of the buttons who trigger the expanding menu is pushed (tapped) the menu opens, but when I try to tap to collapse it back it won't work. I've tested on several android versions and a couple of android mobile devices (htc, samsung) and the result is the same. I even tried this link from the website (the example page) on this android devices and the bug is also there.
any ideas?
I try to run an embedded web in Android, but it crashes when using Android 4.3 (Nexus 4). I run the app and the first webview appears correctly, but when I touch the textbox and the keyboard appears, the view gets frozen just on the top part of the keyboard (where the text predictor is located in case it's active).
This problem only appeared when using 4.3, not with the previous versions.
I've been trying to fix the bug as it says in this issue, but the solutions they give don't resolve my case: https://code.google.com/p/android/issues/detail?id=42518&q=webview&colspec=ID%20Type%20Status%20Owner%20Summary%20Stars
I would love if somebody have been through this problem, because we don't know what to do to fix it...
After more than one year without trying the app, it is working now. The device now is running Android Lollipop, so I guess that probably the WebView has some improvement that avoids the bug.
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