我在应用程序中有一个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">