1<?xml version="1.0" encoding="utf-8"?>
2<layout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:app="http://schemas.android.com/apk/res-auto">
4
5 <RelativeLayout
6 android:layout_width="match_parent"
7 android:layout_height="wrap_content">
8
9 <RelativeLayout
10 android:id="@+id/button_bar"
11 android:layout_width="wrap_content"
12 android:layout_height="wrap_content"
13 android:layout_below="@+id/timer"
14 android:layout_alignParentStart="true"
15 android:layout_alignParentEnd="true"
16 android:paddingHorizontal="16dp"
17 android:paddingVertical="8dp">
18
19 <Button
20 android:id="@+id/cancel_button"
21 style="@style/Widget.Material3.Button.TextButton"
22 android:layout_width="wrap_content"
23 android:layout_height="wrap_content"
24 android:layout_alignParentStart="true"
25 android:layout_centerInParent="true"
26 android:text="@string/cancel" />
27
28
29 <Button
30 android:id="@+id/share_button"
31 style="@style/Widget.Material3.Button.TonalButton"
32 android:layout_width="wrap_content"
33 android:layout_height="wrap_content"
34 android:layout_alignParentEnd="true"
35 android:layout_centerInParent="true"
36 android:text="@string/attach"
37 app:icon="@drawable/ic_check_24dp" />
38 </RelativeLayout>
39
40
41 <TextView
42 android:id="@+id/timer"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 android:layout_alignParentTop="true"
46 android:layout_centerHorizontal="true"
47 android:layout_margin="8dp"
48 android:fontFamily="monospace"
49 android:textAppearance="?textAppearanceDisplayLarge" />
50 </RelativeLayout>
51</layout>