3

我使用自定义视图在每个操作栏选项卡中包含了一个进度条。我希望进度条的宽度与选项卡指示器的宽度相匹配。但是,自定义视图覆盖的区域在选项卡内设置了边距,因此我无法将进度条扩展到整个选项卡宽度。完成这项工作的最佳方法是什么?

下面是它现在的样子......

选项卡中的进度条

进度条设置为匹配父宽度。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="0dp"
>
        <TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/tab_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text = "Day 1"
        android:textAllCaps="true"
        android:textStyle="bold"
        android:textSize="13dp"
        android:layout_gravity="center"
        android:gravity="center"
        android:paddingTop="18dp"
        />

        <ProgressBar 
            style="@android:style/Widget.Holo.ProgressBar.Horizontal"
            android:id="@+id/tab_progress"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="1dp"
            />

</RelativeLayout>
4

1 回答 1

1

解决方案是为 androidActionBarTabStyle 实现自定义主题。这是使用时定义的视图的包含setCustomView我遇到的一件事是,在创建样式作为主题时,它必须以 Theme 为前缀,例如: Theme.MyTheme

如果您不包含Theme.前缀,则不会应用您的主题。

在样式文件中,我定义了这种样式:

<style name="withProgress" parent="@android:style/Widget.Holo.Light.ActionBar.TabView.Inverse">
    <item name="android:padding">0dp</item>
</style>

然后在主题中。

<item name="android:actionBarTabStyle">@style/withProgress</item>

事实证明,它看起来很糟糕,但如果有人正在寻找类似的东西,那就是这样做的。

于 2013-01-10T21:39:29.613 回答