Android设备选择器中的序列号/名称

时间:2012-10-01 08:04:59

标签: java android eclipse development-environment adt

如果我在Eclipse中开发,我经常按下绿色run按钮。出现一个名为Android Device Chooser的弹出窗口,让我从我连接的设备列表中进行选择。一般而言,没有问题,因为任何电话都出现了。我刚观察到Serial Number列显示了两个不同的内容:

通常它只显示序列号,但有时显示设备名称,即Asus Nexus 7。这是非常有用的,特别是如果您有多个设备要进行测试,并且您不能(或不会)记住所有这些序列号(如果您有多个具有着名序列的设备,则会更加混乱{{1 }})。

我不知道为什么以及当eclipse显示设备名称时,但是我想找到一种方法来强制eclipse来收集这些设备名称而不是他们的连续出版物并在设备选择器中显示它们

1 个答案:

答案 0 :(得分:3)

查看源com.android.ddmlib.Device,了解DDMS如何生成deivce名称/序列号:

private static final String DEVICE_MODEL_PROPERTY = "ro.product.model"; //$NON-NLS-1$
private static final String DEVICE_MANUFACTURER_PROPERTY = "ro.product.manufacturer"; //$NON-NLS-1$

... ...

private static final char SEPARATOR = '-';

... ...

@Override
public String getName() {
    if (mName == null) {
        mName = constructName();
    }

    return mName;
}

private String constructName() {
    if (isEmulator()) {
        String avdName = getAvdName();
        if (avdName != null) {
            return String.format("%s [%s]", avdName, getSerialNumber());
        } else {
            return getSerialNumber();
        }
    } else {
        String manufacturer = cleanupStringForDisplay(
                getProperty(DEVICE_MANUFACTURER_PROPERTY));
        String model = cleanupStringForDisplay(
                getProperty(DEVICE_MODEL_PROPERTY));

        StringBuilder sb = new StringBuilder(20);

        if (manufacturer != null) {
            sb.append(manufacturer);
            sb.append(SEPARATOR);
        }

        if (model != null) {
            sb.append(model);
            sb.append(SEPARATOR);
        }

        sb.append(getSerialNumber());
        return sb.toString();
    }
}

private String cleanupStringForDisplay(String s) {
    if (s == null) {
        return null;
    }

    StringBuilder sb = new StringBuilder(s.length());
    for (int i = 0; i < s.length(); i++) {
        char c = s.charAt(i);

        if (Character.isLetterOrDigit(c)) {
            sb.append(Character.toLowerCase(c));
        } else {
            sb.append('_');
        }
    }

    return sb.toString();
}

如果您想了解DDMS如何呈现此设备名称/序列号,请参阅com.android.ddmuilib.DevicePanel

ro.product.manufacturer ro.product.model 位于 /system/build.prop 中,您可以使用{{ 1}}查看当前值:

adb -e shell getprop|grep "\[ro.product"

然后,DDMS透视图中显示的设备名称/序列号为 samsung-gt_i9100-0x0123456789ABCDEF 。请注意,某些kludge供应商没有正确设置这两个属性,这就是为什么对于这些​​设备,它只显示序列号。

Eclipse中没有任何配置可以让您简单地勾选并强制显示它。如果您的设备是root用户,则可以编辑这些属性,以便在DDMS透视图中正确显示设备的制造商和型号,例如,使用[ro.product.manufacturer]: [samsung] [ro.product.model]: [GT-I9100] 或直接在文件系统中编辑build.prop。


DDMS深度

DDMS用于检索设备信息的方式非常复杂,一般情况下,当AndroidDebugBridge启动并运行时,它会在单独的线程中启动DeviceMonitor,这会保持监听收入设备连接并发出远程shell命令{{1}查询设备信息的特定设备,如adb shell setprop <key> <value>getprop,这个远程shell命令执行是不可靠的(可能会受到几个因素的影响),并不能保证抓住所有的属性时间。见com.android.ddmlib.DeviceMonitor

ro.product.manufacturer

注意ro.product.model抛出和处理的所有异常/** * Queries a device for its build info. * @param device the device to query. */ private void queryNewDeviceForInfo(Device device) { // TODO: do this in a separate thread. try { // first get the list of properties. device.executeShellCommand(GetPropReceiver.GETPROP_COMMAND, new GetPropReceiver(device)); queryNewDeviceForMountingPoint(device, IDevice.MNT_EXTERNAL_STORAGE); queryNewDeviceForMountingPoint(device, IDevice.MNT_DATA); queryNewDeviceForMountingPoint(device, IDevice.MNT_ROOT); // now get the emulator Virtual Device name (if applicable). if (device.isEmulator()) { EmulatorConsole console = EmulatorConsole.getConsole(device); if (console != null) { device.setAvdName(console.getAvdName()); } } } catch (TimeoutException e) { Log.w("DeviceMonitor", String.format("Connection timeout getting info for device %s", device.getSerialNumber())); } catch (AdbCommandRejectedException e) { // This should never happen as we only do this once the device is online. Log.w("DeviceMonitor", String.format( "Adb rejected command to get device %1$s info: %2$s", device.getSerialNumber(), e.getMessage())); } catch (ShellCommandUnresponsiveException e) { Log.w("DeviceMonitor", String.format( "Adb shell command took too long returning info for device %s", device.getSerialNumber())); } catch (IOException e) { Log.w("DeviceMonitor", String.format( "IO Error getting info for device %s", device.getSerialNumber())); } } ,如果发生任何异常,DDMS将无法正确获取属性。

如果您想阅读完整的来源,请查看here