Android 4.0 AVD平板电脑,手机布局如Nexus 7

时间:2014-03-05 15:21:26

标签: android avd

我创建了一个模拟7英寸平板电脑的AVD,但它的底部有状态栏,就像this image一样。 我想在this image上设置手机布局(右侧按钮除外) - 怎么做? 我已经根据通用皮肤编写了自己的皮肤(QVGA,WSVGA和WXGA800-7in),这里是代码:

parts {
    portrait {
        background {
            image   background_port.png
        }
    }
    landscape {
        background {
            image   background_land.png
        }
    }

    device {
        display {
            width   600
            height  1024
            x       0
            y       0
        }
    }

}

layouts {

    portrait {
        width     654
        height    1076
        color     0xe0e0e0
        event     EV_SW:0:1


        part1 {
            name    portrait
            x       0
            y       0
        }

        part2 {
            name    landscape
            x       1400
            y       0
        }

        part3 {
            name      device
            x         26
            y         29
        }
    }

    landscape {
        width     1076
        height    654
        color     0xe0e0e0
        event     EV_SW:0:0

        dpad-rotation 3

        part1 {
            name    portrait
            x       1400
            y       0
        }

        part2 {
            name    landscape
            x       0
            y       0
        }

        part3 {
            name    device
            x       29
            y       1050
            rotation  3
        }
    }

}

keyboard {
    charmap qwerty2
}

network {
    speed  full
    delay  none
}

和配置文件:

avd.ini.encoding=ISO-8859-1
hw.lcd.density=160
hw.dPad=no
sdcard.size=50M
hw.cpu.arch=arm
hw.device.hash=-612842536
disk.dataPartition.size=200M
skin.dynamic=no
skin.path=platforms\android-14\skins\SVGA_kp
hw.keyboard.lid=no
hw.keyboard=no
hw.cpu.model=cortex-a8
hw.ramSize=512
tag.id=default
tag.display=Default
hw.device.manufacturer=User
hw.sdCard=yes
hw.mainKeys=yes
hw.accelerometer=yes
skin.name=SVGA_kp
abi.type=armeabi-v7a
hw.trackBall=no
hw.device.name=IdeaTab A1000
hw.sensors.proximity=yes
hw.battery=yes
image.sysdir.1=system-images\android-14\armeabi-v7a\
hw.audioInput=yes
hw.sensors.orientation=no
hw.camera.front=none
hw.gps=yes
snapshot.present=true
vm.heapSize=32

模拟器以纵向模式启动,但操作系统具有底部状态栏,如Honeycomb。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。我认为仿真器根据AVD分辨率和密度计算显示尺寸。之前,我正在改变AVD hw.lcd.density中的config.ini,但它没有用。在皮肤文件夹中,我发现hardware.ini文件包含皮肤指定参数,我认为这些参数会覆盖AVD config.ini中的设置。

解决方案

如果您为AVD设置了高屏幕分辨率(即800x1280),请选择具有高显示密度的皮肤。或者,在[SDK location]/platforms/android-[version]/skins/[skin-name]/hardware.inihw.lcd.density参数设置为更高的值(即300)。为您的AVD选择合适的皮肤,模拟器应该在手机模式下加载Android。