implemented #6: add option to allow rotation

This commit is contained in:
Josia Pietsch 2024-09-11 13:06:55 +02:00
parent 9a3957be36
commit c89e74205d
Signed by: jrpie
GPG key ID: E70B571D66986A2D
7 changed files with 26 additions and 18 deletions

View file

@ -2,7 +2,6 @@
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:custom="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/home_container"
android:layout_width="match_parent"
@ -20,7 +19,8 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.45" />
app:layout_constraintVertical_bias="0.45"
tools:text="2024-12-24" />
<TextView
android:id="@+id/home_lower_view"
@ -28,10 +28,9 @@
android:layout_height="wrap_content"
android:gravity="start|center_vertical"
android:textSize="18sp"
app:layout_constraintBottom_toBottomOf="parent"
tools:text="18:00:00"
app:layout_constraintTop_toBottomOf="@+id/home_upper_view"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>