Skip to content Skip to sidebar Skip to footer

Androidmanifest.xml My Android App Doesn't Really Fill The Screen

I am trying to make my app fill the screen for normal displays, but this is the result when I boot it up on my Samsung Captivate i897: http://oi39.tinypic.com/2qamhqd.jpg The scree

Solution 1:

following attribute used for supports for multiple screen size, try this

android:smallScreens="true"
 android:normalScreens="true"
 android:largeScreens="true"
 android:xlargeScreens="true"
 android:anyDensity="true"/>

To avoid image blurring problem you have to create separate images with more pixel for drawable-hdpi,drawable-xhdpi and drawable-xxhdpi folder.

you can create separate layout folder for different size layout-large,layout-xlarge.

try this also, this will solve orientation problem android:screenOrientation="unspecified" android:configChanges="keyboardHidden|orientation"

hope this will sove your problem.

Post a Comment for "Androidmanifest.xml My Android App Doesn't Really Fill The Screen"