How do I disable the Internet connection in Android Emulator?(如何在 Android Emulator 中禁用 Internet 连接?)
问题描述
我正在尝试使用以下方法检查 Android 上的 Internet 连接.我有 Wi-Fi 连接.
I am trying to check Internet connectivity on Android using the following method. I have a Wi-Fi connection.
private boolean checkInternetConnection() {
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
// Test for connection
if (cm.getActiveNetworkInfo() != null
&& cm.getActiveNetworkInfo().isAvailable()
&& cm.getActiveNetworkInfo().isConnected()) {
return true;
}
else {
// No conection
return false;
}
}
我断开我的 PC 与 Internet 的连接,然后尝试运行上述方法.它仍然总是返回true!?为什么?
I disconnect my PC from the Internet and then try to run the above method. Still it always returns true!? Why?
推荐答案
来自 Eclipse
要禁用 Internet 连接,请转到 Eclipse 并执行
From Eclipse
To disable the Internet connection, go to Eclipse and do
menu Window -> Show view -> Other -> Android -> Devices
现在选择您正在运行的模拟器并再次转到:
Now select your running emulator and again go to:
menu Window -> Show View -> Other -> Android -> Emulator Control
现在... 将数据设置为从主页取消注册.
在设备上或模拟器中,转到:
On the device or in the emulator, go to:
Setting -> Wireless & networks -> Airplane Mode -> OK
这篇关于如何在 Android Emulator 中禁用 Internet 连接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Android Emulator 中禁用 Internet 连接?


基础教程推荐
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01