2013-03-08 153 views
0

我正在使用標籤窗口小部件通過webview來顯示應用程序內的網頁的Android應用程序。 執行中的應用程序不顯示正確的數據。 它只顯示我爲特定選項卡添加的html頁面。但是在所有選項卡中都可以看到html頁面。主要內容不可見。tabhost中的選項卡不顯示正確的內容

http://prntscr.com/vgcoj

super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    TabHost th = (TabHost) findViewById(R.id.tabhost); 

    WebView home = (WebView) findViewById(R.id.webView1); 
    home.setWebViewClient(new WebViewClient() { 
     @Override 
     public void onPageFinished(WebView view, String url) { 
      findViewById(R.id.progressBar1).setVisibility(View.GONE); 
      findViewById(R.id.webView1).setVisibility(View.VISIBLE); 
     } 
    }); 
    home.loadUrl("http://udaipurblog.com"); 
    home.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN); 

    WebView static1 = (WebView) findViewById(R.id.webView2); 

    static1.loadUrl("file:///android_asset/1.html"); 
    static1.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN); 

    WebView webview2 = (WebView) findViewById(R.id.webView3); 
    webview2.loadUrl("file:///android_asset/2.html"); 
    webview2.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN); 



    th.setup(); 
    TabSpec homespec = th.newTabSpec("home"); 
    homespec.setContent(R.id.tab1); 
    homespec.setIndicator("Home"); 
    th.addTab(homespec); 

    TabSpec static1spec = th.newTabSpec("static1"); 
    homespec.setContent(R.id.tab2); 
    homespec.setIndicator("Static1"); 
    th.addTab(homespec); 

    TabSpec static2spec = th.newTabSpec("static2"); 
    homespec.setContent(R.id.tab2); 
    homespec.setIndicator("Static2"); 
    th.addTab(homespec); 

回答

2

您已經使用homespec每一個標籤。使用各個選項卡的規格。 對不起,我不能評論,因爲我的聲譽。

1

你加入總是homespec標籤

TabSpec homespec = th.newTabSpec("home"); 
homespec.setContent(R.id.tab1); 
homespec.setIndicator("Home"); 
th.addTab(homespec); 

TabSpec static1spec = th.newTabSpec("static1"); 
homespec.setContent(R.id.tab2); 
homespec.setIndicator("Static1"); 
th.addTab(homespec); 

TabSpec static2spec = th.newTabSpec("static2"); 
homespec.setContent(R.id.tab2); 
homespec.setIndicator("Static2"); 
th.addTab(homespec); 
相關問題