工具栏中的进度条未占用整个宽度

时间:2018-06-19 20:00:33

标签: android android-toolbar

我需要在具有进度条的工具栏中添加自定义布局。当我尝试将进度条添加到工具栏时。我很喜欢:

enter image description here

但是我期望:

enter image description here

以下是我的工具栏布局:

<android.support.v7.widget.Toolbar
    android:id="@+id/my_toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/blue"
    android:elevation="4dp"
    android:contentInsetStart="0dp"
    app:contentInsetStart="0dp"
    android:theme= "@style/Base.V7.Theme.AppCompat">

    <ProgressBar
        android:id="@+id/progress_bar"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="15dip"
        android:maxHeight="15dip"
        android:indeterminateOnly="false"
        android:max="1000"
        android:progress="500"
        android:progressDrawable="@drawable/progress_color"/>

</android.support.v7.widget.Toolbar>

如何获得图片2的外观?

0 个答案:

没有答案