如何在 Android Emulator 中禁用 Internet 连接?

2023-04-21移动开发问题
7

本文介绍了如何在 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 连接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

Cocos2d - 如何检查不同层中对象之间的交集
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)...
2024-08-12 移动开发问题
8

如何检查设备是否有网络连接:cocos-2d
How to check whether there is internet connection with the device: cocos-2d(如何检查设备是否有网络连接:cocos-2d)...
2024-08-12 移动开发问题
1

“‘NSData’没有可见的@interface 声明选择器‘base64EncodedString’"MKS
quot;No visible @interface for #39;NSData#39; declares the selector #39;base64EncodedStringquot; error in MKStoreKit(“‘NSData’没有可见的@interface 声明选择器‘base64EncodedString’MKStoreKit 中的错误)...
2024-08-12 移动开发问题
3

如何在 COCOS2d Android 中使用 CClistview?
How can I use CClistview in COCOS2d Android?(如何在 COCOS2d Android 中使用 CClistview?)...
2024-08-12 移动开发问题
5

cocos2d-android:如何显示分数
cocos2d-android: how to display score(cocos2d-android:如何显示分数)...
2024-08-11 移动开发问题
7

调用插页式 iAd 只能使用一次
Calling interstitial iAd works only one time(调用插页式 iAd 只能使用一次)...
2024-08-11 移动开发问题
3