WebView中的Web页面不可用错误

时间:2012-08-21 10:52:12

标签: android android-intent android-webview android-tabhost

我正在使用以下教程

创建应用程序

http://www.coderzheaven.com/2011/05/09/android-tabbars-example/

对于每个标签,我都添加了一个带webview的布局。我想检查每个标签更改的网络可用性,如果网络连接不可用,我已将页面重定向到errorActivity。

import android.app.TabActivity;
import android.content.*;
import android.content.res.Resources;
import android.os.Bundle;
import android.widget.TabHost;
import android.widget.TabHost.OnTabChangeListener;
import android.widget.TabHost.TabSpec;

public class MyView extends TabActivity implements OnTabChangeListener
{   
    TabHost tabHost;
    String value;
    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        Resources res = getResources(); 
        tabHost = (TabHost)findViewById(android.R.id.tabhost);


        TabSpec FirstTabSpec = tabHost.newTabSpec("tab1");
        TabSpec SecondTabSpec = tabHost.newTabSpec("tab2");
        TabSpec ThirdTabSpec = tabHost.newTabSpec("tab3");
        TabSpec FourthTabSpec = tabHost.newTabSpec("tab4");


        FirstTabSpec.setIndicator("Tab1",res.getDrawable(R.drawable.tab1)).setContent(new Intent(this,FirstView.class));
        secondTabSpec.setIndicator("Tab2 ",res.getDrawable(R.drawable.tab2)).setContent(new Intent(this,SecondView.class));
        ThirdTabSpec.setIndicator("Tab3",res.getDrawable(R.drawable.tab3)).setContent(new Intent(this,ThirdView.class));
        FourthTabSpec.setIndicator("Tab4",res.getDrawable(R.drawable.tab4)).setContent(new Intent(this,FourthView.class));


        tabHost.addTab(FirstTabSpec);
        tabHost.addTab(SecondTabSpec);
        tabHost.addTab(ThirdTabSpec);
        tabHost.addTab(FourthTabSpec);
        tabHost.setOnTabChangedListener(this);
    }

    public void onTabChanged(String tabId) 
    {   
        if(!IsNetworkAvaialble())
        {

                webview.stopLoading();
                Intent myIntent = new Intent((Activity)MyView.this, NetErrorPage.class);   
            myIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
            ((Activity)MyView.this).startActivity(myIntent);
            finish();
        }

    }

}

但是,在显示“网页不可用”的2或3秒之前,单击选项卡,页面将被重定向到错误页面。如何阻止这个?

2 个答案:

答案 0 :(得分:0)

为访问网络添加此权限:

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

答案 1 :(得分:0)

我已解决了以下问题。

  

在OnTabchanged事件中,我将一个静态布尔值设置为true。在   每个活动类我都包含了loadurl方法。现在我改变了   如果netconnection失败并且静态布尔值为   不等于真,那我已经停止加载并显示了   警报。否则加载网址。