25

使用新的 Lollipop API,如果我们想要个性化操作栏方面,我们必须使用工具栏。

正如 Chris Banes 所说,将 ProgressBar 添加到 Toolbar 就像将其添加到 Toolbar ViewGroup 一样简单。

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/material_green_500"
    android:minHeight="?attr/actionBarSize"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <!-- Color is Brown 500 -->
    <ProgressBar
        android:id="@+id/toolbar_progress_bar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:indeterminateTint="#795548"
        android:indeterminateTintMode="src_in"/>

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

但是我们怎样才能把它放在工具栏的右边,它所属的地方呢?

layout_gravity属性似乎没有为工具栏定义。从 xml 设置它没有效果。我试图改变 ProgressBar 的宽度,但没有成功。

我该怎么办?

编辑:这个问题有一个程序解决方案,请参阅@mdelolmo 回复。

4

3 回答 3

38

你可以试试这个。它对我有用。layout_gravity这里的关键是在xml中定义:android:layout_gravity="right"

<android.support.v7.widget.Toolbar     
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/material_green_500"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<!-- Color is Brown 500 -->
<ProgressBar
    android:id="@+id/toolbar_progress_bar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:indeterminateTint="#795548"
    android:indeterminateTintMode="src_in"
    android:layout_gravity="right"
/>

</android.support.v7.widget.Toolbar>
于 2015-02-24T22:13:21.473 回答
14

我也碰到了同一堵墙,但它以编程方式工作:

    Toolbar.LayoutParams layoutParams = new Toolbar.LayoutParams(
            ViewGroup.LayoutParams.WRAP_CONTENT,
            ViewGroup.LayoutParams.WRAP_CONTENT,
            Gravity.TOP | Gravity.RIGHT);

在我的代码片段中,我将它与顶部对齐,以匹配菜单的对齐方式。

于 2014-10-30T16:51:03.947 回答
-4

完全在 xml 中创建布局的解决方法是将工具栏内容替换为您自己的相对布局。为此,您需要伪造活动标题(如果您使用的是导航图标,还需要伪造),这实际上是在您的工具栏块中嵌套以下内容。

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/toolbar_height"
        android:paddingRight="2dp" >

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:text="@string/app_name"
            android:textColor="@android:color/white"
            android:textSize="20sp"
            android:fontFamily="sans-serif-medium" />

        <ProgressBar
            android:id="@+id/toolbar_progress_bar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:indeterminateTint="#795548"
            android:indeterminateTintMode="src_in" />

</RelativeLayout>

请注意,20sp sans-serif-medium 是棒棒糖工具栏中使用的字体,您可能需要调整文本视图参数以使其在早期版本中看起来更自然。

于 2014-12-31T06:37:33.807 回答