forked from stratumauth/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
includeAppBar.axml
33 lines (29 loc) · 1.31 KB
/
includeAppBar.axml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.appbar.AppBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="?attr/appBarLayoutStyle">
<LinearLayout
android:id="@+id/toolbarWrapLayout"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.appbar.MaterialToolbar
style="Widget.Material3.Toolbar"
android:minHeight="?android:attr/actionBarSize"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/toolbar"/>
<com.google.android.material.progressindicator.LinearProgressIndicator
android:id="@+id/appBarProgressIndicator"
android:indeterminate="true"
android:visibility="invisible"
app:trackThickness="2dp"
app:trackColor="@android:color/transparent"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</com.google.android.material.appbar.AppBarLayout>