Google TV无法在模拟器中启用wifi

时间:2012-08-16 06:51:57

标签: android wifi google-tv

任何人都可以建议如何在谷歌电视模拟器中启用wifi。无法将Android设备与谷歌电视模拟器配对。

1 个答案:

答案 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;
  }