Android 官方DEMO BasicNetworking

Posted elvischiu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 官方DEMO BasicNetworking相关的知识,希望对你有一定的参考价值。

本示例演示如何使用android API检查网络连接。

Demo下载地址:https://github.com/googlesamples/android-BasicNetworking/#readme

相关API:https://developer.android.google.cn/reference/android/net/ConnectivityManager.html

利用ConnectivityManager来检查是否已经连接网络,如果已经连接,判断网络类型。通过ConnectivityManager.getActiveNetworkInfo()方法获取NetworkInfo对象,可获取网络状态信息。

关键代码:

/**
 * 检查网络是否已经连接,如果已连接,判断是否WIFI状态或其他网络类型。
 */
private void checkNetworkConnection() {
    ConnectivityManager connMgr =
        (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo activeInfo = connMgr.getActiveNetworkInfo();
    if (activeInfo != null && activeInfo.isConnected()) {
        wifiConnected = activeInfo.getType() == ConnectivityManager.TYPE_WIFI;
        mobileConnected = activeInfo.getType() == ConnectivityManager.TYPE_MOBILE;
        if(wifiConnected) {
            Log.i(TAG, getString(R.string.wifi_connection));
        } else if (mobileConnected){
            Log.i(TAG, getString(R.string.mobile_connection));
        }
    } else {
        Log.i(TAG, getString(R.string.no_wifi_or_mobile));
    }
}

 

以上是关于Android 官方DEMO BasicNetworking的主要内容,如果未能解决你的问题,请参考以下文章

如何成功运行SDL官方提供的Android平台的Demo

Appium 自动化测试-- 脚本开发:官方demo演示 android_contacts.py

Android SqlDelight和SqlBrite无缝结合使用的Demo例子

android VLayout 全面解析

Android消息推送:手把手教你集成小米推送

weex官方demo weex-hackernews代码解读(下)