Android Localhost?(安卓本地主机?)
问题描述
我知道以前有人问过并回答过这个问题,但我使用 10.0.2.2
作为模拟器.我听说我必须为我的真实设备使用其他东西.谁能告诉我那是什么?我可以让它们都运行 1
URL.而不是为模拟器和实际设备配备一个.
I know this has been asked and answered before, but I use 10.0.2.2
for the emulator. And I heard I must use something else for my real device. Can someone tell me what that is? And can I have them both run off of 1
URL. Instead of having one for the emulator and actual device.
推荐答案
Android 本地主机?
Android Localhost?
Android设备的
localhost
是localhost
, 127.0.0.1.
localhost
of an Android device is localhost
, 127.0.0.1.
我用 10.0.2.2 做模拟器
I use 10.0.2.2 for the emulator
指的是运行模拟器的计算机的localhost
.
That refers to localhost
of the computer running the emulator.
我听说我必须为我的真实设备使用其他东西
And I heard I must use something else for my real device
您需要在计算机和设备共享的任何网络上使用计算机的 IP 地址.根据定义,您不能从另一台机器访问一台机器上的 localhost
.
You need to use the IP address of the computer, on whatever network that the computer and the device share. You cannot access localhost
on one machine from another machine, by definition.
当然,您还需要弄清楚在该计算机上运行的任何内容,以监听的不仅仅是它自己的 localhost
.
Of course, you also need to figure whatever it is that is running on that computer to listen to more than its own localhost
.
有没有一种方法可以让我使用单个 IP,而不是为我的模拟器使用 10.0.2.2 并为我的设备使用另一个 IP
Is there a way I can use a single IP Instead of using 10.0.2.2 for my emulator and having to use another one for my device
不是真的.此外,您所考虑的任何一个值很可能都不适合您的应用程序的发布版本.在那里,您将需要使用每个人的设备都可以访问的一些公开可见的服务器的域名(或者,在紧要关头,IP 地址).
Not really. Moreover, neither of the values that you are thinking of are the right ones for a release build of your app, in all likelihood. There, you will need to use the domain name (or, in a pinch, IP address) of some publicly-visible server that everyone's devices can reach.
这篇关于安卓本地主机?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:安卓本地主机?
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01