从默认的ActionBar TabView中删除填充

时间:2014-02-26 09:13:46

标签: android android-actionbar tabview

我在操作栏tabview上为每个标签设置了自定义布局。问题是背景没有为标签分配整个空间..它看起来像填充应用于背景。有任何帮助吗?

我的标签的自定义布局是

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/icon">

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:background="@drawable/info" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal|bottom"
    android:gravity="bottom"
    android:text="Info"
    android:textColor="@color/white" />

这给出了以下内容: enter image description here

0 个答案:

没有答案