任何人都可以建议如何在谷歌电视模拟器中启用wifi。无法将Android设备与谷歌电视模拟器配对。
答案 0 :(得分:0)
您无法在模拟器中启用wifi。
如果您的代码基于Google TV Remote项目,那么您可以更改此代码以忽略wifi网络:http://code.google.com/p/google-tv-remote/source/browse/src/com/google/android/apps/tvremote/DeviceFinder.java
private boolean isSimulator() {
return Build.FINGERPRINT.startsWith("generic");
}
private boolean isWifiAvailable() {
try {
if (isSimulator()) {
return true;
}
if (!wifiManager.isWifiEnabled()) {
return false;
}
WifiInfo info = wifiManager.getConnectionInfo();
return info != null && info.getIpAddress() != 0;
} catch (Exception e) {
Log.e(LOG_TAG, "isWifiAvailable", e);
}
return false;
}