8

我正在尝试在带有两个选项卡的 android 中做一个简单的选项卡应用程序。我的问题是,当我将这段代码放在选项卡中时,只显示文本,而不显示图标。如果我将文本放入“”,则会显示图标。

有人可以帮助我吗?我的安卓版本是 4.0.3。

非常感谢。

<?xml version="1.0" encoding="utf-8"?>

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/tabhost"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent" >
<LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

     <TabWidget android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@android:id/tabs" />

     <FrameLayout android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@android:id/tabcontent" >

        <LinearLayout android:id="@+id/tab1"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
            <TextView android:id="@+id/textView1"
                android:text="Contenido Tab 1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
    </LinearLayout>

        <LinearLayout android:id="@+id/tab2"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
            <TextView android:id="@+id/textView2"
                android:text="Contenido Tab 2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
    </LinearLayout>

     </FrameLayout>
</LinearLayout>
</TabHost>

活动代码是

public class TabTestActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    Resources res = getResources();

    TabHost tabs=(TabHost)findViewById(R.id.tabhost);
    tabs.setup();

    TabHost.TabSpec spec=tabs.newTabSpec("mitab1");
    spec.setContent(R.id.tab1);
    spec.setIndicator("sss",
            res.getDrawable(android.R.drawable.ic_btn_speak_now));
    tabs.addTab(spec);

    spec=tabs.newTabSpec("mitab2");
    spec.setContent(R.id.tab2);
    spec.setIndicator("TAB2",
            res.getDrawable(android.R.drawable.ic_dialog_map));
    tabs.addTab(spec);



    tabs.setCurrentTab(0);
}

如您所见,非常简单。但是写spec.setIndicator("", res.getDrawable(android.R.drawable.ic_dialog_map)); 的时候可以看到图标,但是写的时候spec.setIndicator("TAB2", res.getDrawable(android.R.drawable.ic_dialog_map)); 只能看到TAB2,两个都看不到。

似乎没有足够的空间来展示两者。所以我试图用这个来增加标签高度

tabs.getTabWidget().getChildAt(1).getLayoutParams().height = 150; 

但似乎不起作用。

4

4 回答 4

8

我用空值替换了标签名称。现在我可以单独看到图标了..找不到任何其他解决方案。

TabHost.TabSpec spec=tabs.newTabSpec("mitab1");

spec.setIndicator("",
                  res.getDrawable(android.R.drawable.ic_btn_speak_now));
Intent sssIntent = new Intent(this, First.class);
spec.setContent(sssIntent);
tabs.addTab(spec);
于 2012-06-29T10:48:39.613 回答
4

//你在加载第一个,所以你只能看到最后一个添加的

 TabHost.TabSpec spec=tabs.newTabSpec("mitab1");

        spec.setIndicator("sss",
                res.getDrawable(android.R.drawable.ic_btn_speak_now));
 Intent sssIntent = new Intent(this, First.class);
 spec.setContent(sssIntent);
        tabs.addTab(spec);

TabHost.TabSpec spec2=tabs.newTabSpec("mitab2");
        spec2=tabs.newTabSpec("mitab2");
        spec2.setIndicator("TAB2",
                res.getDrawable(android.R.drawable.ic_dialog_map));
Intent sssIntent2 = new Intent(this, Second.class);
 spec2.setContent(sssIntent2 );
        tabs.addTab(spec2);
于 2012-06-09T20:37:11.340 回答
2

选项卡中图标(连同标签)的可见性取决于目标设备和 android 平台版本。

我对这个问题进行了更深入的研究,并在你关于这个问题的其他(非常相似的)问题中添加了更多细节和解决方案;在这里能找到它:

https://stackoverflow.com/a/11379708/414581

于 2012-07-08T00:21:54.770 回答
1

在 AndroidManifest.xml 中添加这个解决了这个问题。

<application 
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
</application>
于 2014-07-08T18:00:10.177 回答