我正在使用这个脚本用于android webview app
http://karthiktechfreak.blogspot.in/2015/07/profesional-android-webview-application.html
但是如果网络不可用,我想要一个互联网连接警报。
请提供解决方案。
由于
答案 0 :(得分:2)
检查Webview中的Internet连接
为您的AndroidManifest.xml文件添加网络访问权限
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
然后在protected void onCreate(Bundle savedInstanceState)
方法中添加此
ConnectivityManager cm = (ConnectivityManager)this.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
if(activeNetwork!=null && activeNetwork.isConnected()){
Toast.makeText(this,"Network is Available",Toast.LENGTH_LONG).show();
}else{
Toast.makeText(this,"Network is not Available",Toast.LENGTH_LONG).show();
}