gpt4 book ai didi

android - 无法从类型中对非静态方法 getSystemService(String) 进行静态引用

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:51:18 25 4
gpt4 key购买 nike

我有这个功能哪个网络连接

public boolean isNetworkConnected() {
ConnectivityManager conManager = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = conManager.getActiveNetworkInfo();

if (netInfo == null) {
// There are no active networks.
return false;
} else {
return true;
}
}

但是当我试图让它静态化以便我可以在它抛出的每个 Activity 中使用它时:

Cannot make a static reference to the non-static method getSystemService(String) from the type

不想每次都创建类的对象。

最佳答案

添加非静态依赖作为参数:

public static boolean isNetworkConnected(Context c) {
ConnectivityManager conManager = (ConnectivityManager) c.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = conManager.getActiveNetworkInfo();
return ( netInfo != null && netInfo.isConnected() );
}

关于android - 无法从类型中对非静态方法 getSystemService(String) 进行静态引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17992637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com