Google TVエミュレーターでwifiを有効にする方法を提案できますか。Android デバイスを Google TV エミュレーターにペアリングできません。
質問する
249 次
1 に答える
0
エミュレーターで wifi を有効にすることはできません。
コードを Google TV Remote プロジェクトに基づいている場合は、次のコードを変更して Wi-Fi ネットワークを無視できます: 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;
}
于 2012-08-16T18:23:16.737 に答える