Android ProgressBar在不同的片段中看起来不同

时间:2014-09-16 17:56:51

标签: android android-fragments android-progressbar

我在我的两个片段中使用了相同的ProgressBar,它们看起来不同。我希望ProgressBar具有以下风格,我将参加我的一项活动

enter image description here

<ProgressBar
    android:id="@+id/progBar"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/btn_prog"
    android:indeterminate="false"
    android:max="100"
    android:progress="0"
    android:layout_centerVertical="true"
     />

但是我在另一个活动

中得到了这样的ProgressBar

enter image description here

<ProgressBar
    android:id="@+id/progBar"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/txt_line"
    android:indeterminate="false"
    android:max="100"
    android:paddingBottom="5dp"
    android:progress="0"
    android:layout_centerVertical="true" />

我怎样才能使第二个看起来像第一个?

第二种类型实际上在listView中显示为每个元素的进度

0 个答案:

没有答案