本文介绍了Android模拟器的浏览器没有连接到互联网的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的模拟器浏览器没有连接到互联网?怎么做设置?

my emulator browser not connecting to internet? how to do the settings?

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".reader"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
             <category android:name="android.intent.category.BROWSABLE" />
        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.DEFAULT" />


        </intent-filter>
    </activity>

</application>
 <uses-permission android:name="android.permission.INTERNET" />
 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  <supports-screens
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:anyDensity="true" />
    </manifest>

推荐答案

我编辑与价值AVD支持GPS =是并重新启动仿真器。现在的工作....

I edited avd with value "GPS support= yes" and restarted the emulator. now working....

这篇关于Android模拟器的浏览器没有连接到互联网的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 21:18
查看更多