WIP: was storing first time but issues while stopping video

This commit is contained in:
2024-01-30 20:03:20 +01:00
parent 9f663db12a
commit 4b2eb8def9
17 changed files with 748 additions and 43 deletions
+28
View File
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp"
android:gravity="center_horizontal">
<Button
android:id="@+id/startFrontCameraButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start Front Camera" />
<Button
android:id="@+id/startBackCameraButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start Back Camera"
android:layout_marginTop="16dp" />
<Button
android:id="@+id/stopCameraButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Stop Recording"
android:layout_marginTop="16dp" />
</LinearLayout>
+6 -2
View File
@@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.WittrailAndroid" parent="android:Theme.Material.Light.NoActionBar" />
</resources>
<!-- Base application theme. -->
<style name="Theme.WittrailAndroid" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
</style>
</resources>