forked from stratumauth/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sheetChangeIcon.axml
85 lines (73 loc) · 3.33 KB
/
sheetChangeIcon.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.bottomsheet.BottomSheetDragHandleView
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<LinearLayout
android:orientation="vertical"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.textview.MaterialTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:textAppearance="?attr/textAppearanceTitleLarge"
android:textAlignment="center"
android:id="@+id/textTitle"/>
<com.google.android.material.button.MaterialButton
android:id="@+id/buttonUseCustomIcon"
style="@style/Widget.Material3.Button.OutlinedButton"
android:layout_marginBottom="6dp"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/useCustomIcon"/>
<com.google.android.material.tabs.TabLayout
android:id="@+id/tabLayoutPack"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="6dp"
android:background="@android:color/transparent"
app:tabMode="scrollable"/>
<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.Material3.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/editSearch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:hint="@string/search">
</com.google.android.material.textfield.TextInputEditText>
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.progressindicator.CircularProgressIndicator
android:id="@+id/progressIndicator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminate="true"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
android:layout_marginTop="16dp"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:paddingBottom="20dp"
android:layout_width="match_parent"
android:clipToPadding="false"
android:visibility="invisible"
android:layout_height="wrap_content">
<requestFocus/>
</androidx.recyclerview.widget.RecyclerView>
</FrameLayout>
</LinearLayout>