2010-10-04 78 views
1

就像黑莓手機一樣,我們是否有任何API方法(類似於DeviceInfo.isSimulator())來檢查設備是模擬器還是真實設備?檢查Android手機是模擬器還是真實設備

+3

可能重複(http://stackoverflow.com/questions/2799097/how-can-i-detect-the-android-模擬器) – 2010-10-04 11:46:09

回答

0

由於內部常數每隔一段時間就會改變一次,所以沒有100%正確的方法來做到這一點。這雖然對我的作品:[?我如何檢測Android模擬器]

if (android.os.Build.MODEL.contains("google_sdk") || 
    android.os.Build.MODEL.contains("Emulator")) { 
    // Then you are running the app on the emulator. 
} 
+0

其他建議可以在這裏找到:http://stackoverflow.com/questions/2799097/how-can-i-detect-when-an-android-application-is-running-in-the-emulator?answertab=票#標籤頂 – AgentKnopf 2013-01-03 10:42:55

相關問題