使android选项卡宽度等于图标图像宽度

时间:2013-10-25 18:45:06

标签: android

我想在我的Android应用程序中添加图标图像作为标签。

添加时,标签高度等于图标图像高度。但是标签的宽度大于图标图像的宽度。我希望标签宽度也等于图标图像宽度。

我的应用图片: enter image description here

我的要求: enter image description here

另外,我想让标签的蓝色选择条不可见。我使用“android:tabStripEnabled = false”但仍然可见。

布局代码:

<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="fill_parent" 
android:background="@drawable/abst"
tools:context=".MainActivity">

<RelativeLayout 
        android:id="@+id/header"
        android:layout_width="fill_parent"
        android:layout_height="20dp"
        android:background="@drawable/header">


</RelativeLayout>

<TabHost
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@+id/header">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
    <HorizontalScrollView android:layout_width="wrap_content"
                      android:layout_height="wrap_content"
                      android:scrollbars="none"
                      >
  <TabWidget android:id="@android:id/tabs"
             android:layout_width="wrap_content"
             android:layout_height="wrap_content"
             android:padding="0sp"
             android:tabStripEnabled="false"
             android:dividerPadding="0dp"/>
</HorizontalScrollView>
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"

        android:padding="5dp">


    </FrameLayout>
</LinearLayout>

我想要一些提示使它成为可能。感谢。

0 个答案:

没有答案