Android webview没有';除非在浏览器中打开,否则无法加载

Android webview没有';除非在浏览器中打开,否则无法加载,android,android-webview,Android,Android Webview,我制作了一个包含webview的应用程序,当webview开始加载url时,它会检查连接。在AVD上运行良好,但当我在实际设备上测试它时,出现了一个大错误。我假设webview没有加载,因为它显示的所有内容都是黑色的。不管我做什么,都是黑色的。。在我弄明白如何让它工作之前3天,它首先需要在浏览器应用程序中查看目标url,然后才能在我的应用程序上打开目标url。总之,除非您首先在浏览器中打开目标url,否则webview不会显示该url。我对此进行了研究,但我所能找到的只是关于如何在webview

我制作了一个包含webview的应用程序,当webview开始加载url时,它会检查连接。在AVD上运行良好,但当我在实际设备上测试它时,出现了一个大错误。我假设webview没有加载,因为它显示的所有内容都是黑色的。不管我做什么,都是黑色的。。在我弄明白如何让它工作之前3天,它首先需要在浏览器应用程序中查看目标url,然后才能在我的应用程序上打开目标url。总之,除非您首先在浏览器中打开目标url,否则webview不会显示该url。我对此进行了研究,但我所能找到的只是关于如何在webview中打开无法打开浏览器的链接的答案

以下是我主要活动的代码:

public class MainActivity extends Activity
{

private WebView wv;
private ProgressBar progress;
private static String mycaturl=" *target url* ";

@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);     
    StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
    StrictMode.setThreadPolicy(policy);
    if (reachable(this))
    {
        Toast.makeText(this, "Reachable", Toast.LENGTH_SHORT).show();
        buildwv( savedInstanceState, WebSettings.LOAD_DEFAULT );
    }
    else if (!reachable(this))
    {
        Toast.makeText(this, "Unreachable", Toast.LENGTH_SHORT).show();
        eolc( savedInstanceState );
    }
    else
    {
        Toast.makeText(this, "onCreate error.", Toast.LENGTH_SHORT).show();
        finish();
    }
}


@SuppressLint({ "SetJavaScriptEnabled" })
public void buildwv(Bundle sis, int load)
{
    setContentView(R.layout.activity_main);

    //assigning objects to variables
    wv=(WebView) findViewById(R.id.wv);
    wv.setWebViewClient( new wvc() );
    progress=(ProgressBar) findViewById(R.id.progress);

    //websettings
    WebSettings ws = wv.getSettings();
    ws.setAppCacheMaxSize( 100 * 1024 * 1024 ); // 100MB
    ws.setAppCachePath( this.getCacheDir().getAbsolutePath() );
    ws.setAllowFileAccess( true );
    ws.setAppCacheEnabled( true );
    ws.setJavaScriptEnabled( true );
    ws.setCacheMode(load);

    //if instance is saved, to catch orientation change
    if(sis==null)
    {   wv.loadUrl(mycaturl);   }
}


public void eolc(final Bundle sis)
{
    AlertDialog.Builder alertDialog = new AlertDialog.Builder( MainActivity.this );

    alertDialog.setTitle("ERROR 1");
    alertDialog.setMessage("Host is unreachable. Load from cache or exit.");
    alertDialog.setIcon(R.drawable.tick);

    alertDialog.setPositiveButton( "Load from Cache", new DialogInterface.OnClickListener()
    {
        public void onClick(DialogInterface dialog,int which)
        {
            // Write your code here to execute after dialog
            Toast.makeText(getApplicationContext(), "You chose to load cache.", Toast.LENGTH_SHORT).show();
            buildwv( sis, WebSettings.LOAD_CACHE_ELSE_NETWORK );
        }
    });

    alertDialog.setNeutralButton( "Help", new DialogInterface.OnClickListener()
    {
        public void onClick(DialogInterface dialog, int which)
        {
            Toast.makeText(getApplicationContext(), "You chose Help. EOLC", Toast.LENGTH_SHORT).show();
            wv.loadUrl("file:///android_asset/otherpages/errorpage.htm");
        }
    });

    alertDialog.setNegativeButton( "Exit", new DialogInterface.OnClickListener()
    {
        public void onClick(DialogInterface dialog, int which)
        {
            // Write your code here to execute after dialog
            Toast.makeText(getApplicationContext(), "You chose to exit.", Toast.LENGTH_SHORT).show();
            finish();
            }
    });

    alertDialog.create();
    alertDialog.show();
}


public void roe()
{
    AlertDialog.Builder alertDialog = new AlertDialog.Builder( MainActivity.this );

    alertDialog.setTitle("ERROR 2");
    alertDialog.setMessage("Host is unreachable. Restart to load cache or exit.");
    alertDialog.setIcon(R.drawable.tick);
    alertDialog.setPositiveButton( "Restart", new DialogInterface.OnClickListener()
    {
        public void onClick(DialogInterface dialog,int which)
        {
            Toast.makeText(getApplicationContext(), "You chose to restart and load cache.", Toast.LENGTH_SHORT).show();
            Intent i = getBaseContext().getPackageManager()
                     .getLaunchIntentForPackage( getBaseContext().getPackageName() );
            i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK );
            startActivity(i);
        }
    });
    alertDialog.setNeutralButton( "Help", new DialogInterface.OnClickListener()
    {
        public void onClick(DialogInterface dialog, int which)
        {
            Toast.makeText(getApplicationContext(), "You chose Help. ROE", Toast.LENGTH_SHORT).show();
            wv.stopLoading();
            wv.loadUrl("file:///android_asset/otherpages/errorpage.htm");
        }
    });
    alertDialog.setNegativeButton( "Exit", new DialogInterface.OnClickListener()
    {
        public void onClick(DialogInterface dialog, int which)
        {
            Toast.makeText(getApplicationContext(), "You chose to exit.", Toast.LENGTH_SHORT).show();
            finish();
        }
    });
    alertDialog.create();
    alertDialog.show();
}


private class wvc extends WebViewClient
{

      //when page started loading
      public void onPageStarted(WebView view, String url, Bitmap favicon)
      {
          //circular progress bar open
          progress.setVisibility(View.VISIBLE);

          //if reachable and setting cache on every new page
          //setcache(getApplicationContext());

          WebSettings ws = wv.getSettings();

          if ( !reachable(getApplicationContext()) )
          {
              if ( ws.getCacheMode() == WebSettings.LOAD_DEFAULT )
              {
                  roe();
              }
              else if ( ws.getCacheMode() == WebSettings.LOAD_CACHE_ELSE_NETWORK )
              {
                  Toast.makeText(getApplicationContext(), "loading cache coz not reachable", Toast.LENGTH_SHORT).show();
              }

          }
      }


      //when page finished
      @Override
      public void onPageFinished(WebView view, String url) 
      {
          super.onPageFinished(view, mycaturl);
          Toast.makeText(getApplicationContext(), "PAGE DONE LOADING!!", Toast.LENGTH_SHORT).show();

          //circular progress bar close
          progress.setVisibility(View.GONE);
      }


      //when received an error
      @Override
      public void onReceivedError(WebView view, int errorCode, String description, String failingUrl)
      {
          wv.stopLoading();
          //wv.loadUrl("file:///android_asset/otherpages/errorpage.htm");
          WebSettings ws = wv.getSettings();

          if ( ws.getCacheMode() == WebSettings.LOAD_DEFAULT )
          {
              Toast.makeText(getApplicationContext(), "Page unavailable", Toast.LENGTH_SHORT).show();
          }
          else
          {
              Toast.makeText(getApplicationContext(), "Page not cached", Toast.LENGTH_SHORT).show();
          }
          roe();
      }
  }


//checking connectivity by checking if site is reachable
public static boolean reachable(Context context) 
{
    final ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
    final NetworkInfo netInfo = connMgr.getActiveNetworkInfo();

    if (netInfo != null && netInfo.isConnected()) 
    {
        try 
        {
            URL url = new URL(mycaturl);
            HttpURLConnection urlc = (HttpURLConnection) url.openConnection();
            urlc.setConnectTimeout(5000); // five seconds timeout in milliseconds
            urlc.connect();
            if (urlc.getResponseCode() == 200) // good response
            {   return true;    } else {    return false;   }
        }
        catch (IOException e)
        {   return false;   }
    }
    else
    {   return false;   }
}


//options menu inflation
@Override
public boolean onCreateOptionsMenu(Menu menu) 
{
    // inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}


//when back button is pressed
public void onBackPressed ()
{
    if (wv.isFocused() && wv.canGoBack())
    {   wv.goBack();    }   else {  finish();   }
}


//when options button is pressed
@Override

public boolean onOptionsItemSelected(MenuItem item)
{
    switch (item.getItemId())
    {
        case R.id.item1:
            wv.loadUrl("file:///android_asset/otherpages/errorpage.htm");
            break;
        case R.id.item2:
            String currurl=wv.getUrl();
            wv.loadUrl(currurl);   
            break;
        case R.id.item3:
            Intent i = getBaseContext().getPackageManager()
             .getLaunchIntentForPackage( getBaseContext().getPackageName() );
            i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            startActivity(i);
            break;
        case R.id.item4:
            finish();
            break;
        default:
            break;
    }
    return true;
} 


//saving instance state
@Override
protected void onSaveInstanceState(Bundle outState )
{
    super.onSaveInstanceState(outState);
    wv.saveState(outState);
}


//restoring instance state
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState)
{
    super.onSaveInstanceState(savedInstanceState);
    wv.restoreState(savedInstanceState);
}

}
是的,我也添加了这些:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> 

好的,下面是如何真正做到这一点

1) 永远不要改变严格的模式。需要这样做意味着99%的时间你没有用正确的方式写。严格模式的存在是有原因的——阻止用户认为应用程序崩溃。事实上,如果你触发了看门狗定时器(你可能正在这么做),禁用它可能会使应用程序崩溃

2) 千万不要写if(x)else if(!x)else。最后一个else是多余的,而elseif导致您再次执行x,而这样做几乎总是错误的

3) 有一种更好的方法来为对话框计时。为您的WebView编写自定义WebViewClient,并将其设置为setWebViewClient。Override onPageFinished可设置全局标志以了解加载的页面。在onCreate中,创建webview,设置此客户端,并设置计时器。当计时器熄灭时,检查标志。如果该标志仍然为false,请停止加载网页并弹出对话框

编辑:添加

4) 我刚刚注意到在onPageStarted中再次调用了Reach?真的太过分了

如果您这样做:

1) buildwv函数成为onCreate函数,并添加代码以设置自定义客户端并启动计时器

2) 在对照全局标志进行检查后,eolc功能将成为计时器的主体

3) 你的roe函数真的应该消失了

4) 您的onPageStarted功能可能会消失。它似乎没有做任何对我有用的事情,而不是由计时器来检查页面是否已加载。把它放在旁边只是为了进度条的工作


5) 可访问性消失。

是的,我认为您的设备是4.0.1版本?发生这种情况时,
logcat
会怎么说?你确定你在你的
AndroidManifest.xml
中添加了
android.permission.INTERNET
?@IvanBartsov,正如他提到的,它正在AVD上工作,所以在menifest中一定有这个权限,不是吗?@AndroidKiller我在2.3.6和4.1.2上试过,同样的情况也会发生。@AndroidKiller是的,你可能是对的。但是AVD有时会以意想不到的方式表现得很怪异,仔细检查那些显而易见的东西是不会有什么坏处的。。1.应用程序没有崩溃。2.是的,最后一个是多余的,但它不应该是一个问题,因为这个过程不应该真正达到它。如果是这样的话,我会发现这是一个很大的错误。无论如何,我知道它应该是另外一个,这样它就不会再运行x了。是这样吗?3.你在说什么对话计时器?在查看加载url是否没有更多连接后,该对话框才会显示。4.是的,它在create上被调用,以查看用户是否愿意在没有连接的情况下继续。在页面started.buildwv是oncreate上的第一个,但是如果用户不想继续,如果他/她没有连接,或者如果应用程序正在推的url被关闭,我不想让应用程序加载webview。2是一个大问题-它会导致你等待两倍的时间,因为访问需要很多时间。至于3,我是说用定时器来代替它。即使你的可访问功能正常工作,下载也不会有什么问题——网站可能在下载后无法访问。因此,正确的做法是将其合并到一个步骤中,只需下载数据,如果需要的时间太长,则暂停该过程。好的,我得到第2步。顺便说一句,我不想在create上加载webview,因为我首先想检查将设置哪种缓存模式。roe需要重新启动,因为根据我之前所做的,webview可以立即设置缓存模式,但除非活动重新启动,否则似乎不会使用它。嘿@Gabe Sechan你没有回答这个问题。