1

我刚刚开始一个应用程序的想法,我必须自动化我的电脑通过手机完成的一些事情。我之前下载了 sdk,但无法让我定义用户设备。我认为这是旧版 sdk 安装的错误,所以我删除了包括.android文件夹在内的所有内容并重新安装,但无济于事。我的自定义设备仍未显示在列表中。

当我尝试添加自定义设备定义时,我会执行所有步骤,设备显示在“设备定义”选项卡下,它以 XML 格式写入(格式不正确)<username>/.android/devices.xml但它没有显示在设备列表中我尝试创建一个新的 AVD,当我重新启动时,该设备也从设备定义列表中消失了。

我正在使用带有 Eclipse Juno、SDK Manager 21.0.1 的 Windows 8 Pro x64(这是在 2012 年 12 月 22 日凌晨 2 点左右下载的)。如果重要的话,我在 Eclipse 中拥有的唯一插件是 Subversive、ADT 和 Eclipse Marketplace。

这里还有以下内容<username>/.android/devices.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<d:devices xmlns:d="http://schemas.android.com/sdk/devices/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <d:device>
    <d:name>Droid DNA</d:name>
    <d:manufacturer>User</d:manufacturer>
    <d:meta/>
    <d:hardware>
      <d:screen>
        <d:screen-size>large</d:screen-size>
        <d:diagonal-length>5.00</d:diagonal-length>
        <d:pixel-density>xxhdpi</d:pixel-density>
        <d:screen-ratio>long</d:screen-ratio>
        <d:dimensions>
          <d:x-dimension>1080</d:x-dimension>
          <d:y-dimension>1920</d:y-dimension>
        </d:dimensions>
        <d:xdpi>440.58</d:xdpi>
        <d:ydpi>440.58</d:ydpi>
        <d:touch>
          <d:multitouch>jazz-hands</d:multitouch>
          <d:mechanism>finger</d:mechanism>
          <d:screen-type>capacitive</d:screen-type>
        </d:touch>
      </d:screen>
      <d:networking>
NFC
Wifi
Bluetooth</d:networking>
      <d:sensors>
ProximitySensor
Gyroscope
LightSensor
Barometer
Compass
Accelerometer
GPS</d:sensors>
      <d:mic>true</d:mic>
      <d:camera>
        <d:location>front</d:location>
        <d:autofocus>true</d:autofocus>
        <d:flash>true</d:flash>
      </d:camera>
      <d:camera>
        <d:location>back</d:location>
        <d:autofocus>true</d:autofocus>
        <d:flash>true</d:flash>
      </d:camera>
      <d:keyboard>nokeys</d:keyboard>
      <d:nav>nonav</d:nav>
      <d:ram unit="GiB">2</d:ram>
      <d:buttons>hard</d:buttons>
      <d:internal-storage unit="GiB">
4</d:internal-storage>
      <d:removable-storage unit="TiB"/>
      <d:cpu>Generic CPU</d:cpu>
      <d:gpu>Generic GPU</d:gpu>
      <d:abi>
armeabi
mips
armeabi-v7a
x86</d:abi>
      <d:dock/>
      <d:power-type>battery</d:power-type>
    </d:hardware>
    <d:software>
      <d:api-level>-</d:api-level>
      <d:live-wallpaper-support>true</d:live-wallpaper-support>
      <d:bluetooth-profiles/>
      <d:gl-version>2.0</d:gl-version>
      <d:gl-extensions/>
      <d:status-bar>false</d:status-bar>
    </d:software>
    <d:state default="true" name="Portrait">
      <d:description>The device in portrait orientation</d:description>
      <d:screen-orientation>port</d:screen-orientation>
      <d:keyboard-state>keyssoft</d:keyboard-state>
      <d:nav-state>navhidden</d:nav-state>
    </d:state>
    <d:state name="Landscape">
      <d:description>The device in landscape orientation</d:description>
      <d:screen-orientation>land</d:screen-orientation>
      <d:keyboard-state>keyssoft</d:keyboard-state>
      <d:nav-state>navhidden</d:nav-state>
    </d:state>
  </d:device>
</d:devices>

请帮帮我,我在尝试用谷歌搜索这个问题时找到了一个解决方案,其中 AVD 会写“,”而不是“。” 指定小数位,但这更像是一个语言环境问题,尽管我检查了我的无论如何都没有这样做。

4

2 回答 2

0

我们也遇到了这个问题。经过几次实验,我们发现将 xxhdpi 替换为 xhdpi 可以正常显示。我认为这可能是这个版本中的一个错误。

于 2013-01-15T06:36:20.370 回答
0

实际上,这听起来像是一个不止一个人遇到过一些问题的问题。在 Android SDK Tools 21.1 之前(实际上我认为这在 RC2 中也得到了解决),解析 xxhdpi 设备定义和 AVD 设备列表时存在问题。如果您尝试将 Android SDK 工具更新到 21.1 版,我相信您的问题将得到解决。

于 2013-03-06T13:10:20.777 回答