2

例如,在我的 Xperia mini 手机上,

但我想为这款手机购买“索尼爱立信 xperia mini” 。

是否可以?

4

2 回答 2

3

对于那部特定的手机(也许对于许多其他索尼爱立信手机),您只能通过读取您提到的系统属性来获取真实的设备名称:ro.semc.product.model

由于android.os.SystemProperties类对公共 API 隐藏,因此您需要使用反射(或 execgetprop ro.semc.product.model命令并获取其输出):

public String getSonyEricssonDeviceName() {
  String model = getSystemProperty("ro.semc.product.model");
  return (model == null) ? "" : model;
}


private String getSystemProperty(String propName) {
  Class<?> clsSystemProperties = tryClassForName("android.os.SystemProperties");
  Method mtdGet = tryGetMethod(clsSystemProperties, "get", String.class);
  return tryInvoke(mtdGet, null, propName);
}

private Class<?> tryClassForName(String className) {
  try {
    return Class.forName(className);
  } catch (ClassNotFoundException e) {
    return null;
  }
}

private Method tryGetMethod(Class<?> cls, String name, Class<?>... parameterTypes) {
  try {
    return cls.getDeclaredMethod(name, parameterTypes);
  } catch (Exception e) {
    return null;
  }
}

@SuppressWarnings("unchecked")
private <T> T tryInvoke(Method m, Object object, Object... args) {
  try {
    return (T) m.invoke(object, args);
  } catch (InvocationTargetException e) {
    throw new RuntimeException(e);
  } catch (Exception e) {
    return null;
  }
}
于 2012-10-03T12:50:07.243 回答
0

ST15IXPeria mini 的型号代码。所以也许你应该使用Build.DEVICE, ord 为他们名字的各种代码建立一个对应库。

于 2012-08-23T12:41:50.363 回答