我在 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
}