カスタム ビューを使用して、各アクション バー タブにプログレス バーを含めました。プログレス バーの幅をタブ インジケーターの幅に合わせたいと思います。ただし、カスタム ビューでカバーされる領域にはタブ内にマージンが設定されているため、プログレス バーをタブ幅全体に拡張することはできません。これを機能させる最良の方法は何ですか?
以下、今の様子です。...
プログレス バーは、親の幅に合わせて設定されます。
<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>