程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> activity-android 程序中的 ConnectivityManager

activity-android 程序中的 ConnectivityManager

編輯:編程綜合問答
android 程序中的 ConnectivityManager

我在 android 程序中使用下面的代碼來修改網絡連接。

ConnectivityManager conMgr = 
       (ConnectivityManager)this.getSystemService(Context.CONNECTIVITY_SERVICE);

如果是在 Activity 中,代碼可以正常運行,但是如果在一個通用類中,就不能調用方法。

getSystemService

如何解決這個問題?

最佳回答:


需要傳遞一個Context對象過去,例如NetUtils
外部調用NetUtils.isConnected(Context context);

內部實現

public static boolean isConnected(Context context) {

ConnectivityManager conMgr = 
       (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
//do next
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved