怎样检查Android网络连接状态

在发送任何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();

    }

}

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

时间: 2024-10-17 16:38:03

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

Android 网络连接状态的监控

有些应用需要连接网络,例如更新后台服务,刷新数据等,最通常的做法是定期联网,直接使用网上资源.缓存数据或执行一个下载任务来更新数据. 但是如果终端设备没有连接网络,或者网速较慢,就没必要执行这些任务.可以使用ConnectivityManager检查是事联网以及当前是何种类型的网络.具体 代码如下: ConnectivityManager cm = (ConnectivityManager) getApplicationContext().getSystemService(Context.CON

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

获取网络信息需要在AndroidManifest.xml文件中加入相应的权限. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 1)判断是否有网络连接 复制代码 代码如下: public boolean isNetworkConnected(Context context) { if (context != null) { ConnectivityManager mConn

Android判断网络连接状态

需要相关权限 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/><uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/><uses-permission android:name="android.permission.INTERNET"/

android检测网络连接状态示例讲解

网络的时候,并不是每次都能连接到网络,因此在程序启动中需要对网络的状态进行判断,如果没有网络则提醒用户进行设置 Android连接首先,要判断网络状态,需要有相应的权限,下面为权限代码(AndroidManifest.xml): 复制代码 代码如下: <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/><uses-permission android:name="a

android设备判断网络连接状态

android开发中,在做网络请求前判断当前网络连接状态有时很有必要.本文将介绍如何获取android设备当前网络连接状态! 所需权限(AndroidManifest.xml文件中添加): <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> Java代码(MainActivity.java文件) package com.example.androidtest; import a

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

http://www.mobiletuts.me 获取网络连接状态 随着3G和Wifi的推广,越来越多的Android应用程序需要调用网络资源,检测网络连接状态也就成为网络应用程序所必备的功能. Android平台提供了ConnectivityManager  类,用于网络连接状态的检测. Android开发文档这样描述ConnectivityManager 的作用: Class that answers queries about the state of network connectivi

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

获取网络连接状态 随着3G和Wifi的推广,越来越多的Android应用程序需要调用网络资源,检测网络连接状态也就成为网络应用程序所必备的功能. Android平台提供了ConnectivityManager 类,用于网络连接状态的检测. Android开发文档这样描述ConnectivityManager的作用: Class that answers queries about the state of network connectivity. It also notifies applic

android之ConnectivityManager简介,网络连接状态

android之ConnectivityManager简介,网络连接状态

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

一.使用Linq求差集.交集 使用场景: 需要从数据中心获得用户数据,并以此为标准,同步系统的用户信息,对系统中多余的用户进行删除操作,缺失的用户进行添加操作,对信息更新了的用户进行编辑操作更新. 所以需要通过对数据中心以及系统现有用户信息进行比较,分为三部分: (1) Linq取差集,找出需要删除的用户数据,进行删除(USERNAME为唯一值字段). 使用的是Except这个方法. (2)使用Linq提供的Intersect方法,取得两个用户集合的交集,遍历检查进行更新. (3)同样再次取差集