例如,在我的 Xperia mini 手机上,
- Build.MODEL返回“st15i”
- Build.MANUFACTURER返回“索尼爱立信”
但我想为这款手机购买“索尼爱立信 xperia mini” 。
是否可以?
例如,在我的 Xperia mini 手机上,
但我想为这款手机购买“索尼爱立信 xperia mini” 。
是否可以?
对于那部特定的手机(也许对于许多其他索尼爱立信手机),您只能通过读取您提到的系统属性来获取真实的设备名称: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;
}
}
ST15I是XPeria mini 的型号代码。所以也许你应该使用Build.DEVICE
, ord 为他们名字的各种代码建立一个对应库。