无法在Android模拟器上激活互联网......?

时间:2015-11-10 11:54:37

标签: android android-emulator

我正在尝试在Android模拟器上激活互联网。我尝试了所有不同的方法但仍未找到方法.....我使用的办公室电脑有代理设置如下:

 IP : 10.1.2.23
 Password : admin123

我尝试使用命令行选项运行我的模拟器,如下所示:

尝试:1

emulator.exe -avd MyAVD -no-audio -http-proxy http://puser1:admin123@10.1.2.23:8080

尝试:2(在我的电脑中配置DNS以下)

emulator.exe -avd MyAVD -no-audio -http-proxy http://puser1:admin123@10.1.2.23:8080 -dns-server 10.1.14.25,10.1.14.26

尝试:3

我尝试通过以下参考解决,但无法解决它。

http://www.gitshah.com/2011/02/android-fixing-no-internet-connection.html

No internet on Android emulator - why and how to fix?

How to connect android emulator to the internet

How to setup Android emulator proxy settings?

2 个答案:

答案 0 :(得分:4)

我自己解决了这个问题。发布我尝试过的内容以帮助其他人

我的代理设置如下:

IP : 10.1.2.23
Password : admin123

1)运行:

如果您从命令行启动android模拟器,请尝试以下命令:

emulator.exe -avd MyAVD -no-audio -http-proxy http://puser1:admin123@10.1.2.23:8080 -dns-server 8.8.8.8,8.8.4.4

如果您从eclipse启动Android模拟器,请确保添加以下设置:

Window --> Preferences --> Android --> Launch --> Default Emumator Options : -dns-server 8.8.8.8,8.8.4.4

Run --> Run Configurations --> Android Application Name --> Under Target Tab Select Emumator --> Additional Emumator Command Line Options : -no-audio -http-proxy http://puser1:admin123@10.1.2.23:8080

2)在android Emumator中添加代理设置:

Setting --> Wireless networks --> Celluler Network / Mobile Network --> Access Points Names --> Edit Default One (In my case --> T-Mobile US,epc.tmobile.com) and add proxy setting with username and password. 

别忘了保存设置。

请勿更改或输入任何其他设置。

3)如果静止互联网未激活,请尝试打开/关闭移动互联网2到3次。

4)如果仍未启用互联网,请尝试打开/关闭飞行模式2/3次,以保持移动互联网的连接。

答案 1 :(得分:0)

转到 - > 移动网络设置 - >接入点名称 在这里,你会发现 T-mobile US(APN) 或添加任何新的,现在只需点击并添加以下字段:

Username: android
password: android
APN Protocol: ipv4

用户名和密码可以是我猜的任何东西,但为了简单起见我将它设置为android。

这个设置对我有用。

感谢