1

我在一个应用程序中有一个 tabhost,它对每个选项卡都使用选项卡图标和文本。对于我的生活,我无法让图标居中于文本上方,而不是填充整个选项卡。我的搜索只导致其他人试图让图标填满整个标签。我见过的所有其他示例在文本上方都有图标。

这是我设置和添加选项卡的方式:

tabs = (TabHost) this.findViewById(R.id.conference_tabhost);
tabs.setOnTabChangedListener(this);
tabs.setup();

TabSpec tspecMenu = tabs.newTabSpec(tab_tag_menu);
tspecMenu.setIndicator("Menu", getResources().getDrawable(R.drawable.ic_tab_menu));
tspecMenu.setContent(R.id.tab_menu_view);
tabs.addTab(tspecMenu);

这是我的布局的开始:

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/conference_tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical">
    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
    </TabWidget>
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
4

0 回答 0