This is my app in physical devic
This is my app in emulator
I have a problem in view the application in the real machine as you see in image1 Changing right to left and vice versa . While this problem does not exist in the emulator as you see in image2 .
Perhaps the whole thing in support of Right-to-left,
see locale on your device and emulator.
Do you have android:supportsRtl="true" to the <application> element in your manifest file?
More info there - http://android-developers.blogspot.ru/2013/03/native-rtl-support-in-android-42.html
Related
I found lots of questions about this but I have a different problem. The launch icon is not refreshing on a specific phone with Android 10. I tried to changed it and installing it again and does work. The good thing is that on another phone with Android 7 works perfectly fine, even changing the icon.
It's clearly a phone cache problem. The Same flutter app on two different devices present different icons.
This didn't worked:
Uninstalling the App
Shutting down the phone
Turning on the phone
Installing the app
Tried with Visual Studio Code, Android Studio and the Cmd console, it doesn't work. I hoped that the release installation will work but nope.
Any ideas?
Found the problem.
My Android manifest has:
android:icon="#mipmap/ic_launcher"
android:roundIcon="#mipmap/ic_launcher_round"
For Android 10 it was taking the ic_launcher_round, and for the Android 7 the ic_launcher. I would like to know if there is some kind of configuration to change this or it is an Android fixed thing.
I created an android app with a dashboard Designed with Cardviews. When i run it on the virtual device or on my tablet, it displays the cards. But doesn't display them on non Tablets Devices. Did someone faced this issue and how could be solved?
It may cause by Hardware acceleration is not enabled. Please enable this property in application field by using this line in your manifest.xml file and try again:
<application android:hardwareAccelerated="true" ...>
i have two problems with my wear application on the Moto 360.
It's working fine on other wear watches.
the application rotated 90° left
(for information i have android:screenOrientation="portrait" in my manifiest, i don't know if it can be related)
The application get translated up (my layout is plain blue, there shouldn't be a white area above the chin. It's seems that the app gets translated to compensate for the chin ???
As you can see in this picture:
I hope you will have ideas to help me solve this problem because it prevents my app from being accepted as a Wear App by google...
i found out that is was caused my setting android:screenOrientation="portrait" in my wear manifest
I have a an android media box. It is the Measy B4A Amlogic s802 Quad core Cortex A9# 2GHz (AML8726-M8) with Octo-core Mali-450MP GPU # 600MHZ. OS is Android 4.4.2 Kitkat
I'm running a digital signage app on it and it is working fine but with one problem, which is the top notification bar. I can't seem to get rid of it. What I want is to completely remove it and launch the app at full screen.
I'm not really a coder and I was able to root to the device with VRoot but I don't really know what to do next. Any ideas, please help.
thanks,
Hussein
Simply write this in your manifest:
<application
...
android:theme="#android:style/Theme.Holo.NoActionBar.Fullscreen" >
...
</application>
You might like to check NoviSign App to get get performance for digital signage openinf a full screen on Android device 4.1 and above. Here is the link.
I'm having a problem with the layout orientation.
I've recently made a android app that has a layout and layout-land but the problem is
that when I test it on the emulator the screen orientation works, but when I install the
apk into a real android device, the layout-land xml doesn't work even I tilt the device.
I've made 2 layout folder for layout-land and layout and set up the xml file with the same
name into it, and it works fine with the emulator but not in real device . I've checked the android device I tested and their is no problem with the settings. Sorry for my bad English.
Valid Names for Tablet :
layout-sw600dp-land
layout-sw720dp-land
Check your manifest you must add : android:configChanges="orientation" .. to your activities
with android:theme="#android:style/Theme.Translucent.NoTitleBar"
you must add android:screenOrientation="sensor"