在发送任何HTTP请求前最好检查下网络连接状态,这样可以避免异常。这个教程将会介绍怎样在你的应用中检测网络连接状态。

创建新的项目

1.在Eclipse IDE中创建一个新的项目并把填入必须的信息。  File->New->Android Project
2.创建新项目后的第一步是要在AndroidManifest.xml文件中添加必要的权限。
  • 为了访问网络我们需要 INTERNET 权限
  • 为了检查网络状态我们需要 ACCESS_NETWORK_STATE 权限

AndroidManifest.xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml

version
="1.0"

encoding
="utf-8"?>
<manifest

xmlns:android
="http://schemas.android.com/apk/res/android"
    package="com.example.detectinternetconnection"
    android:versionCode="1"
    android:versionName="1.0"

>
  
    <uses-sdk

android:minSdkVersion
="8"

/>
  
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"

>
        <activity
            android:name=".AndroidDetectInternetConnectionActivity"
            android:label="@string/app_name"

>
            <intent-filter>
                <action

android:name
="android.intent.action.MAIN"

/>
  
                <category

android:name
="android.intent.category.LAUNCHER"

/>
            </intent-filter>
        </activity>
    </application>
  
    <!--
Internet Permissions -->
    <uses-permission

android:name
="android.permission.INTERNET"

/>
  
    <!--
Network State Permissions -->
    <uses-permission

android:name
="android.permission.ACCESS_NETWORK_STATE"

/>
  
</manifest>
3.创建一个新的类,名为ConnectionDetector.java,并输入以下代码。
ConnectionDetector.java 
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package

com.example.detectinternetconnection;
  
import

android.content.Context;
import

android.net.ConnectivityManager;
import

android.net.NetworkInfo;
  
public

class

ConnectionDetector {
  
    private

Context _context;
  
    public

ConnectionDetector(Context context){
        this._context
= context;
    }
  
    public

boolean

isConnectingToInternet(){
        ConnectivityManager
connectivity = (ConnectivityManager) _context.getSystemService(Context.CONNECTIVITY_SERVICE);
          if

(connectivity != 
null)
          {
              NetworkInfo[]
info = connectivity.getAllNetworkInfo();
              if

(info != 
null)
                  for

(
int

i = 
0;
i < info.length; i++)
                      if

(info[i].getState() == NetworkInfo.State.CONNECTED)
                      {
                          return

true
;
                      }
  
          }
          return

false
;
    }
}

4.当你需要在你的应用中检查网络状态时调用isConnectingToInternet()函数,它会返回true或false。

?
1
2
3
ConnectionDetector
cd = 
new

ConnectionDetector(getApplicationContext());
  
Boolean
isInternetPresent = cd.isConnectingToInternet(); 
//
true or false
5.在这个教程中为了测试我仅仅简单的放置了一个按钮。只要按下这个按钮就会弹出一个 alert dialog 显示网络连接状态。

6.打开 res/layout 目录下的 main.xml 并创建一个按钮。
main.xml
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml

version
="1.0"

encoding
="utf-8"?>
<RelativeLayout

xmlns:android
="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"

>
  
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Detect
Internet Status"

/>
  
    <Button

android:id
="@+id/btn_check"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="Check
Internet Status"
        android:layout_centerInParent="true"/>
  
</RelativeLayout>

7.最后打开你的 MainActivity 文件并粘贴下面的代码。在下面的代码中我用一个 alert dialog 来显示预期的状态信息。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package

com.example.detectinternetconnection;
  
import

android.app.Activity;
import

android.app.AlertDialog;
import

android.content.Context;
import

android.content.DialogInterface;
import

android.os.Bundle;
import

android.view.View;
import

android.widget.Button;
  
public

class

AndroidDetectInternetConnectionActivity 
extends

Activity {
  
    //
flag for Internet connection status
    Boolean
isInternetPresent = 
false;
  
    //
Connection detector class
    ConnectionDetector
cd;
  
    @Override
    public

void

onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
  
        Button
btnStatus = (Button) findViewById(R.id.btn_check);
  
        //
creating connection detector class instance
        cd
new

ConnectionDetector(getApplicationContext());
  
        /**
         *
Check Internet status button click event
         *
*/
        btnStatus.setOnClickListener(new

View.OnClickListener() {
  
            @Override
            public

void

onClick(View v) {
  
                //
get Internet status
                isInternetPresent
= cd.isConnectingToInternet();
  
                //
check for Internet status
                if

(isInternetPresent) {
                    //
Internet Connection is Present
                    //
make HTTP requests
                    showAlertDialog(AndroidDetectInternetConnectionActivity.this"Internet
Connection"
,
                            "You
have internet connection"
true);
                else

{
                    //
Internet connection is not present
                    //
Ask user to connect to Internet
                    showAlertDialog(AndroidDetectInternetConnectionActivity.this"No
Internet Connection"
,
                            "You
don't have internet connection."
false);
                }
            }
  
        });
  
    }
  
    /**
     *
Function to display simple Alert Dialog
     *
@param context - application context
     *
@param title - alert dialog title
     *
@param message - alert message
     *
@param status - success/failure (used to set icon)
     *
*/
    public

void

showAlertDialog(Context context, String title, String message, Boolean status) {
        AlertDialog
alertDialog = 
new

AlertDialog.Builder(context).create();
  
        //
Setting Dialog Title
        alertDialog.setTitle(title);
  
        //
Setting Dialog Message
        alertDialog.setMessage(message);
  
        //
Setting alert dialog icon
        alertDialog.setIcon((status)
? R.drawable.success : R.drawable.fail);
  
        //
Setting OK Button
        alertDialog.setButton("OK"new

DialogInterface.OnClickListener() {
            public

void

onClick(DialogInterface dialog, 
int

which) {
            }
        });
  
        //
Showing Alert Message
        alertDialog.show();
    }
}

运行并测试下你的程序吧!你将会得到类似下面的结果。

怎样检查Android网络连接状态的更多相关文章

  1. Android 网络连接状态的监控

    有些应用需要连接网络,例如更新后台服务,刷新数据等,最通常的做法是定期联网,直接使用网上资源.缓存数据或执行一个下载任务来更新数据. 但是如果终端设备没有连接网络,或者网速较慢,就没必要执行这些任务. ...

  2. android 检查网络连接状态实现步骤

    获取网络信息需要在AndroidManifest.xml文件中加入相应的权限. <uses-permission android:name="android.permission.AC ...

  3. Silverlight项目笔记6:Linq求差集、交集&检查网络连接状态&重载构造函数复用窗口

    1.使用Linq求差集.交集 使用场景: 需要从数据中心获得用户数据,并以此为标准,同步系统的用户信息,对系统中多余的用户进行删除操作,缺失的用户进行添加操作,对信息更新了的用户进行编辑操作更新. 所 ...

  4. Android 检测网络连接状态

    Android连接网络的时候,并不是每次都能连接到网络,因此在程序启动中需要对网络的状态进行判断,如果没有网络则提醒用户进行设置. 首先,要判断网络状态,需要有相应的权限,下面为权限代码(Androi ...

  5. Android编程获取网络连接状态(3G/Wifi)及调用网络配置界面

    随着3G和Wifi的推广,越来越多的Android应用程序需要调用网络资源,检测网络连接状态也就成为网络应用程序所必备的功能. Android平台提供了ConnectivityManager  类,用 ...

  6. Android编程 获取网络连接状态 及调用网络配置界面

    获取网络连接状态 随着3G和Wifi的推广,越来越多的Android应用程序需要调用网络资源,检测网络连接状态也就成为网络应用程序所必备的功能. Android平台提供了ConnectivityMan ...

  7. Android编程获取网络连接状态及调用网络配置界面

    获取网络连接状态 随着3G和Wifi的推广,越来越多的Android应用程序需要调用网络资源,检测网络连接状态也就成为网络应用程序所必备的功能. Android平台提供了ConnectivityMan ...

  8. 【Android进阶】判断网络连接状态并自动界面跳转

    用于判断软件打开时的网络连接状态,若无网络连接,提醒用户跳转到设置界面 /** * 设置在onStart()方法里面,可以在界面每次获得焦点的时候都进行检测 */ @Override protecte ...

  9. 用delphi检查网络连接状态3种方式

    用delphi检查网络连接状态3种方式 用delphi检查网络连接状态 检测计算机是否联网比较简单的做法可以通过一个 Win32 Internet(WinInet) 函数 InternetCheckC ...

随机推荐

  1. C# winform 创建快捷方式

    using System;using IWshRuntimeLibrary;using System.IO; namespace UavSystem.Common{    public class S ...

  2. List的深度copy和浅度拷贝

    List<Student> list= Arrays.asList( new Student("Fndroid", 22, Student.Sax.MALE, 180) ...

  3. 序列化json模块

    1.用json模块来进行序列化和反序列化 注意:用json序列化的数据类型得到的文件后缀名必须是json.因为如果不是json后缀,别人也不知道这是用json序列化的文件. 序列化:json.dump ...

  4. 初次使用引用外部js心得

    在外部引用自己编辑的js时建立链接写在头部中是会出错的,如下图 错误如下: 这是一个是我初学时遇到的一个算是低级错误吧,看到这个错误,我以为的是我引用的js中编辑的代码是不是哪里写错了,但是看了好多遍 ...

  5. 微信小程序组件解读和分析:一、view(视图容器 )

    view组件说明:    视图容器    跟HTML代码中的DIV一样,可以包裹其他的组件,也可以被包裹在其他的组件内部.用起来比较自由随意,没有固定的结构. view组件的用法: 示例项目的wxml ...

  6. SSAS 系列01- DAX公式常用公式

    计算第一次购买时间 CALCULATE(FIRSTDATE(FactInternetSales[OrderDate]),ALLEXCEPT(FactInternetSales,FactInternet ...

  7. easyui权限管理

    在easyui上实现权限的管理 所谓权限:指的是系统中的资源,资源包括菜单资源(学习情况报表,账号审核...)以及按钮资源所谓角色:指的是系统中的权限集合(每一个角色对应着哪些权限集合) 1.一星权限 ...

  8. CAD交互绘制虚线(网页版)

    用户可以在CAD控件视区任意位置绘制直线. 主要用到函数说明: _DMxDrawX::DrawLine 绘制一个直线.详细说明如下: 参数 说明 DOUBLE dX1 直线的开始点x坐标 DOUBLE ...

  9. css--使用的四种方法

    前戏 之前学习了HTML相关的知识,也能简单的写一个hello world的页面.但是,只学HTML满足不了我们的需求,而HTML.CSS.JavaScript三者搭配使用才能更好的完成我们需要的效果 ...

  10. IntelliJ IDEA集成工具Database连接MySQL8.0报错的解决方法

    直接用默认配置连接的话,会报以下错误: Connection to MySQL - @localhost failed. [08001] Could not create connection to ...