水平ProgressBar不是完整的父级宽度

时间:2018-07-03 06:32:47

标签: android android-progressbar

我正在向应用程序AppBarLayout添加进度条:

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="?attr/appBarLayoutTheme">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="?attr/toolbarPopupTheme"/>

    <ProgressBar
        style="?android:progressBarStyleHorizontal"
        android:id="@+id/progress_loader"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="-8dp"
        android:indeterminateTint="@color/greyishWhite"
        android:layout_marginTop="-9dp"
        android:maxWidth="2000dp"
        android:indeterminateOnly="true"/>

</android.support.design.widget.AppBarLayout>

在人像模式下一切正常:

enter image description here

但是在横向模式下,它并不需要完整的父级宽度:

enter image description here

如何强制ProgressBar始终处于充满状态。

答案:

感谢@Mahavir Jain指导正确的道路:

最后要做的就是更改

android:indeterminateOnly="true"

android:indeterminate="true"

2 个答案:

答案 0 :(得分:5)

删除下面的行。

  

android:indeterminateOnly =“ true”

android:indeterminateOnly 限制为仅不确定模式(状态保持进度模式将不起作用)。

<ProgressBar
            android:id="@+id/progress_loader"
            style="?android:progressBarStyleHorizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="-8dp"
            android:layout_marginTop="-9dp"
            android:indeterminateTint="@color/red"
            android:max="100"
            android:progress="100"
            tools:ignore="UnusedAttribute" />

答案 1 :(得分:1)

设置def migrate() do items = Repo.one(from t in Table, where: (...), select: count(t.id)) do_migrate(items) end defp do_migrate(0), do: :ok defp do_migrate(number) do Repo.all(from t in Table, where: (...), limit: 1000) |> Enum.each(fn i -> Ecto.Changeset.change(i, %{ field: Data.make_calculations(i.id) }) |> Repo.update() end) do_migrate(number - 1000) end 或尝试使用此android:indeterminate="true"代替

style="@android:style/Widget.Holo.Light.ProgressBar.Horizontal"