1

这是一个困扰我几天的问题。我已经尽力寻找解决方案,但无论我走到哪里,它都说我目前使用的方法是正确的。

情况很简单:我有五个选项卡,它们包含相同的布局,但内容略有不同(例如,使用 setText 更改其中一个标签)。因此,我将布局膨胀五次,并将它们全部添加为单独的选项卡。

这是我的代码:

package com.test;

import android.app.TabActivity;
import android.content.res.Resources;
import android.os.Bundle;
import android.view.View;
import android.widget.TabHost;
import android.widget.TextView;

public class TestActivity extends TabActivity
{
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        TabHost host = getTabHost();
        Resources res = getResources();

        String[] days = { "Monday", "Tuesday", "Wednesday", "Thursday", "Friday" };

        for (int i = 0; i < days.length; i++)
        {
            View contents = getLayoutInflater().inflate(R.layout.test, host.getTabContentView(), true);

            ((TextView)contents.findViewById(R.id.title)).setText(days[i]);

            host.addTab
            (
                host.newTabSpec(days[i]).
                setIndicator(days[i]).
                setContent(contents.getId())
            );

            host.getTabWidget().getChildAt(i).getLayoutParams().height = 55;
        }
    }
}

我的布局文件如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="6dip">

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Test"
        android:textAppearance="?android:attr/textAppearanceMedium" />

</LinearLayout>

问题是,不是文本位于单独的选项卡上,而是所有文本相互重叠,并且每个选项卡都相同。这可能是我忽略的非常简单的事情。任何帮助表示赞赏。

4

2 回答 2

2
 all the text overlaps eachother and is the same for every tab

根据我的发现,它们并没有相互重叠。如果您android:text="Test"从布局文件中删除,您将只在所有选项卡中看到星期五。

看起来你需要使用TabContentFactory来实现你想要的。这是我对您的问题的解决方案。它会给你你所需要的。

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    final TabHost host = getTabHost();
    Resources res = getResources();

    final String[] days = { "Monday", "Tuesday", "Wednesday", "Thursday",
            "Friday" };

    for (int i = 0; i < days.length; i++) {
        TabHost.TabSpec spec=host.newTabSpec(days[i]);
        spec.setContent(new TabHost.TabContentFactory() {
            public View createTabContent(String tag) {
                View wv = getLayoutInflater().inflate(R.layout.test, host.getTabContentView(), false);
                ((TextView) wv.findViewById(R.id.title)).setText(tag);
                return(wv);
            }
        });
        spec.setIndicator(days[i]);
        host.addTab(spec);
    }
    host.setCurrentTab(0);
}

这是我开始使用的链接https://github.com/commonsguy/cw-android/tree/master/Fancy/DynamicTab

归功于 Mark Murphy(Commonsguy)。

于 2011-10-23T13:56:37.913 回答
0

这很有趣,但是当我为每个选项卡传递唯一文本时,我的问题就解决了(即days[i],而不是恒定的“Friday” :)

TabHost.TabSpec spec=host.newTabSpec(days[i]);
于 2012-05-23T10:42:48.040 回答