简体   繁体   中英

How to connect localhost phpmyadmin to android emulator

I'm having trouble in the HttpPost part because it cannot create a connection. I tried in the browser by entering in the address bar ipaddress/directory or 127.0.01/directory . It works but in the android part it doesn't.

要使用模拟器将127.0.0.1更改为10.0.2.2请参考此处 ,并确保已在清单中设置Internet权限。

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>

You should check out this : http://developer.android.com/guide/appendix/faq/commontasks.html#localhostalias

(use the alias "10.0.2.2" instead of "localhost" or "127.0.0.1")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM