我知道,我可以使用android.os.Build.MANUFACTURER
Build 对象的字段。但是对于 Nook 设备,该字段必须包含什么值?
谢谢。
我知道,我可以使用android.os.Build.MANUFACTURER
Build 对象的字段。但是对于 Nook 设备,该字段必须包含什么值?
谢谢。
Foxconn
最好在真实设备上进行测试。
测试并使用 Nook Simple Touch Glow (Eink)。警告:不知道高清角落会返回什么。
public static boolean isNook()
{
String thisManufacturer=android.os.Build.MANUFACTURER;
Log.d(TAG, "UTIL: Manu: "+thisManufacturer);
// 'BarnesAndNoble' on Nook Simple Touch with GlowLite
String thisProduct=android.os.Build.PRODUCT;
Log.d(TAG, "UTIL: PRODUCT "+thisProduct);
// 'NOOK' on Nook Simple Touch with GlowLite
//String thisBrand=android.os.Build.BRAND;
//Log.d(TAG, "UTIL: Brand "+thisBrand);
// 'nook' on Nook Simple Touch with GlowLite
//String thisModel=android.os.Build.MODEL;
//Log.d(TAG, "UTIL: Model "+thisModel);
// 'unknown' on Nook Simple Touch with GlowLite
if( thisManufacturer.equals("BarnesAndNoble") &&
thisProduct.equals("NOOK"))
return(true);
else
return(false);
}