Webview Android APP中的Internet连接警报和隐藏网站URL

时间:2015-12-15 12:23:31

标签: android android-webview

我正在使用这个脚本用于android webview app

http://karthiktechfreak.blogspot.in/2015/07/profesional-android-webview-application.html

但是如果网络不可用,我想要一个互联网连接警报。

请提供解决方案。

由于

1 个答案:

答案 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();
      }

Check video here