anotherim/src/main/res/layout/activity_recording.xml

51 lines
1.9 KiB
XML
Raw Normal View History

2018-04-22 18:31:37 +00:00
<?xml version="1.0" encoding="utf-8"?>
2024-04-05 11:32:33 +00:00
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
2018-04-22 18:31:37 +00:00
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
2018-04-22 18:31:37 +00:00
<RelativeLayout
android:id="@+id/button_bar"
android:layout_width="wrap_content"
2018-04-22 18:31:37 +00:00
android:layout_height="wrap_content"
android:layout_below="@+id/timer"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true"
android:paddingHorizontal="16dp"
android:paddingVertical="8dp">
2018-04-22 18:31:37 +00:00
<Button
android:id="@+id/cancel_button"
style="@style/Widget.Material3.Button.TextButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_centerInParent="true"
android:text="@string/cancel" />
2018-04-22 18:31:37 +00:00
<Button
android:id="@+id/share_button"
style="@style/Widget.Material3.Button.TonalButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerInParent="true"
2024-04-05 11:32:33 +00:00
android:text="@string/attach"
app:icon="@drawable/ic_check_24dp" />
</RelativeLayout>
<TextView
android:id="@+id/timer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_margin="8dp"
android:fontFamily="monospace"
android:textAppearance="?textAppearanceDisplayLarge" />
</RelativeLayout>
</layout>