1

我知道,我可以使用android.os.Build.MANUFACTURERBuild 对象的字段。但是对于 Nook 设备,该字段必须包含什么值?

谢谢。

4

2 回答 2

1

Foxconn最好在真实设备上进行测试。

于 2012-07-31T11:00:44.803 回答
1

测试并使用 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);
    }    
于 2013-08-13T01:13:57.150 回答