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>
如果我將我的選項卡設置爲CustomView(..),視圖是否可以用此主題填充選項卡?我正在使用Sherlock ActionBar,但沒有奏效。 –