无法连接到Android

时间:2016-03-03 07:11:36

标签: android networking connection project android-volley

我有一个我在桌面上制作的android项目。我通过wifi连接到互联网。但是当我在笔记本电脑上运行相同项目时,我无法通过我的移动数据运营商连接到互联网。问题出在哪里?

I found "No internet connection" as volleyError

1 个答案:

答案 0 :(得分:0)

我这样做的方法是使用端口转发:

  1. 在手机和笔记本电脑浏览器上连接您的设备并打开Chrome。
  2. 在“网址”标签上,键入chrome:// inspect
  3. 点击端口转发并添加一个新行,端口为8888,IP为localhost:8080。enter image description here
  4. 现在在您的Android应用程序代码中,将localhost:8080替换为localhost:8888。
  5. 基本上现在8888你的手机将连接到计算机localhost。 注意:确保您的笔记本电脑和设备上都打开了Chrome。当你输入chrome:// inspect时,你应该能够看到你附加的设备。

    有关更多帮助,请参阅此处:https://developer.chrome.com/devtools/docs/remote-debugging

    同时将<uses-permission android:name="android.permission.INTERNET"/>添加到Androidmanifest.xml