如何在材质设计工具栏中添加循环进度微调器

时间:2015-09-15 04:55:06

标签: android material-design

我正在使用材料设计工具栏。我想在工具栏上添加一个循环进度微调器,它将执行直到后台任务完成。我该如何实现这个进度条。

private Toolbar toolbar;   
toolbar = (Toolbar) findViewById(R.id.app_bar);
toolbar.setTitle("New Appointments");
setSupportActionBar(toolbar);

1 个答案:

答案 0 :(得分:4)

你可以试试这个

 <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>