Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android manifest configuration?

Tags:

android

What do I need to put in my android manifest file to:

  1. support all screen sizes.
  2. Hide the icons in the android bottom nav bar on 3.0, i know you cannot remove the bar, but you can hide the icons.
like image 594
panthro Avatar asked Oct 10 '22 06:10

panthro


1 Answers

For the first point, you can try to play with this, for example:

<supports-screens android:resizeable=["true"| "false"]
                  android:smallScreens=["true" | "false"]
                  android:normalScreens=["true" | "false"]
                  android:largeScreens=["true" | "false"]
                  android:xlargeScreens=["true" | "false"]
                  android:anyDensity=["true" | "false"]
                  android:requiresSmallestWidthDp="integer"
                  android:compatibleWidthLimitDp="integer"
                  android:largestWidthLimitDp="integer"/>

as explained in this link and this other link.

like image 75
Jav_Rock Avatar answered Oct 13 '22 11:10

Jav_Rock