Android app not full screen on Smartq7 lcd (800 x 480 resolution 133 dpi)

Andorid Supporting Multiple Screens

http://d.android.com/guide/practices/screens_support.html

 

In this document, we can see,

 

1. Android size<->density configurations

 

Android 1.5 and earlier versions of the platform were designed to support a single screen configuration — HVGA (320x480) resolution on a 3.2" screen.

Starting from Android 1.6, the platform adds support for multiple screen sizes and resolutions, reflecting the many new types and sizes of devices on which the platform will run. This means that developers must design their applications for proper display on a range of devices and screens.

  • A set of three generalized sizes: large, normal, and small, and
  • A set of three generalized densities: high (hdpi), medium (mdpi), and low (ldpi)

So , obvioulsy , there are 9 possible size<->density configurations.

 

and my smartq7 is for the large(800x480) & ldpi(133)

 

 

 

 

 

 

 

 

 

 

 

 

2.  Android Screen compartiable displaying

  • If the device's screen density is not medium, the application's layout and drawing of its content is as if the screen is medium density, but the framework scales the layout and images (if the image for the target density is not available) to fit the target density. It scales 1.5 times if the target density is high density (160->240 virtual dpi), or 0.75 times if the target density is low density (160 -> 120 virtual dpi).
  • If the device's screen size is small, there are few options options for making Android 1.5 applications work well on such a screen, so Android Market will filter applications that are not known to support these screens from the device.
  • If the device's screen size is large, it limits the application's screen to the normal size and draws a black background around the application. For example, if an application supports high density, but does not support large screens, it only uses a 480x720 area of the screen and the rest will be filled with a black background (see example below).

HVGA, normal size, normal density
[ emulator -skin HVGA ]
WVGA, normal size, high density
[emulator -skin WVGA854 -dpi-device 240]

The application occupies full screen as its considered to be normal size. (close to 480x720)

VGA, large size, medium density
[ emulator -skin 640x480 ]

The application occupies 320x480 of VGA.

SVGA, large size, high density
[ emulator -skin 800x600 -dpi-device 240]

The application occupies 480x720 (=1.5 x [320x480]) of 800x600.

 

This is the reason why Android apps could not display full screen on my Smartq7 lcd !!!

 

 

 

3. Manifest attributes for screens support

 

Android 1.6 introduced a new manifest element, <supports-screens>, whose attributes you can use to control the display of your application on different classes of device screens. The smallScreens, normalScreens, and largeScreens attributes correspond to the generalized screen sizes shown in earlier .

 

In general, when you declare a screen-size attribute (smallScreens, normalScreens, or largeScreens) as "true", you are signaling to the platform that your application wants to manage its UI by itself, for all screen sizes, without the platform applying any size-compatibility behaviors (such as a virtual HVGA display area). If you declare a screen-size attribute as "false", you are signaling that your application is not designed for that screen size. The effects are conditioned by the screen size that your application does not support:

 

The following example shows a manifest that declares support for large, normal, and small screens in any densities.

<manifest xmlns:android="http://schemas.android.com/apk/res/android">

 
<supports-screens
         
android:largeScreens="true"
         
android:normalScreens="true"
         
android:smallScreens="true"
         
android:resizable="true"
         
android:anyDensity="true" />
 
</manifest>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值