-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathactivity_clientreset.xml
More file actions
38 lines (31 loc) · 1.32 KB
/
activity_clientreset.xml
File metadata and controls
38 lines (31 loc) · 1.32 KB
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
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:padding="32dp"
android:layout_centerInParent="true"
android:orientation="vertical">
<me.zhanghai.android.materialprogressbar.MaterialProgressBar
android:id="@+id/progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="64dp"
android:layout_gravity="center_horizontal"
android:indeterminate="true"
style="@style/Widget.MaterialProgressBar.ProgressBar" />
<TextView
android:id="@+id/status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"
app:fontFamily="sans-serif" />
</LinearLayout>
</RelativeLayout>
</layout>