Files
doerflingerhelpers/app/src/main/res/layout/activity_main.xml
Alexander Dörflinger b20bb86be3 [UI + Dependencies] Applied new style + added firebase
Added the Firebase Dependency and login flow. Also applied some new
styling. The new color is more reddish.
2025-03-18 14:43:55 +01:00

34 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".HelperGridActivity">
<TextView
android:id="@+id/tv_welcome_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/text_size_welcome_message"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
tools:text="@string/welcome_message_test"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@id/tv_welcome_message"
app:layout_constraintBottom_toBottomOf="parent"
android:weightSum="2">
<include layout="@layout/helper_group_tile_item"
android:id="@+id/tile_sleep_timer"
android:layout_margin="10dp"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>