4

如何在我的 AVD 上启用/禁用 NETWORK_PROVIDER?

public class MyActivity extends Activity{
   @Override
   protected void onResume(){
      super.onResume();

      LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_PROVIDER);
      if (lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER)) Log.e("D", "ONLINE !");
      else Log.e("D", "OFFLINE !");
   }
}

每次创建 Activity 时,我都会通过 Logcat: OFFLINE !如何在 AVD 上开启 NETWORK_PROVIDER?如您所见,“Google 的位置服务”处于活动状态。

在此处输入图像描述

4

0 回答 0