chore: Update activity_fitness.xml layout for Fitbot app

This commit is contained in:
Niels Gras
2024-05-17 15:11:42 +02:00
parent aa33bf2f12
commit 60bdf860d3

View File

@@ -1,10 +1,49 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/red"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.example.fitbot.ui.components.PersonalMotionPreviewElement
android:layout_width="match_parent"
android:layout_height="match_parent"/>
android:id="@+id/personalMotionPreviewElement"
android:layout_width="600dp"
android:layout_height="550dp"
android:layout_marginTop="24dp"
android:layout_marginEnd="30dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<VideoView
android:id="@+id/videoView"
android:layout_width="600dp"
android:layout_height="550dp"
android:layout_marginStart="30dp"
android:layout_marginTop="24dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/homeButton"
style="@style/ButtonStyle"
android:layout_width="180dp"
android:layout_height="120dp"
android:layout_marginStart="30dp"
android:layout_marginBottom="24dp"
android:text="HOME"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<Button
android:id="@+id/buttonComplete"
style="@style/ButtonStyle"
android:layout_width="180dp"
android:layout_height="120dp"
android:layout_marginEnd="30dp"
android:layout_marginBottom="24dp"
android:text="Complete"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</android.support.constraint.ConstraintLayout>