Archived
Minor interface redesign, including First Time activity
This commit is contained in:
@@ -6,14 +6,14 @@
|
||||
<group android:name="background">
|
||||
<path
|
||||
android:name="circle"
|
||||
android:fillColor="#448aff"
|
||||
android:fillColor="@color/accent"
|
||||
android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0" />
|
||||
</group>
|
||||
<group android:name="check">
|
||||
<path
|
||||
android:name="tick"
|
||||
android:pathData="M6.5,12 l0,0 l0,0"
|
||||
android:strokeColor="#FFFFFF"
|
||||
android:strokeColor="@color/background"
|
||||
android:strokeWidth="1" />
|
||||
</group>
|
||||
|
||||
|
||||
@@ -19,24 +19,25 @@
|
||||
android:layout_height="wrap_content"
|
||||
android:layoutAnimation="@anim/layout_animation_fall_down">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="0px"
|
||||
android:layout_height="0px"
|
||||
android:focusable="true"
|
||||
android:focusableInTouchMode="true"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:layout_width="0dp"-->
|
||||
<!-- android:layout_height="0dp"-->
|
||||
<!-- android:focusable="true"-->
|
||||
<!-- android:focusableInTouchMode="true"-->
|
||||
<!-- app:layout_constraintStart_toStartOf="parent"-->
|
||||
<!-- app:layout_constraintTop_toTopOf="parent" />-->
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txtWelcome"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginTop="56dp"
|
||||
android:layout_marginStart="16dp"
|
||||
android:text="@string/welcome"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="30sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
android:fontFamily="@font/manrope_extrabold"
|
||||
android:textSize="24sp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
@@ -44,115 +45,102 @@
|
||||
android:id="@+id/txtsetupthings"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:text="@string/firstsomethings"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtWelcome"
|
||||
app:layout_constraintTop_toBottomOf="@+id/txtWelcome" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txttellmename"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:text="@string/tellmename"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtsetupthings"
|
||||
app:layout_constraintTop_toBottomOf="@+id/txtsetupthings" />
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:id="@+id/txtLayoutClasses"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
app:boxStrokeColor="@color/accent"
|
||||
app:boxStrokeWidth="1dp"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="56dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginEnd="56dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:hint="@string/yourname"
|
||||
android:textColorHint="@color/hintcolor"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintStart_toStartOf="@+id/txttellmename"
|
||||
app:layout_constraintTop_toBottomOf="@+id/txttellmename"
|
||||
android:importantForAutofill="no">
|
||||
|
||||
<EditText
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/txtName"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:animateLayoutChanges="true"
|
||||
android:ems="10"
|
||||
android:gravity="center_horizontal"
|
||||
android:gravity="start"
|
||||
android:imeOptions="flagNoExtractUi"
|
||||
android:inputType="textNoSuggestions"
|
||||
android:singleLine="true"
|
||||
android:textAlignment="center"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="16sp"
|
||||
android:theme="@style/EditTextTheme" />
|
||||
android:textSize="16sp"/>
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txtNextClass"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:gravity="start"
|
||||
android:text="@string/nextclass"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintTop_toBottomOf="@+id/txtLayoutClasses" />
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:id="@+id/txtLayoutClass"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
android:layout_width="0dp"
|
||||
app:boxStrokeColor="@color/accent"
|
||||
app:boxStrokeWidth="1dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="56dp"
|
||||
android:layout_width="0dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:hint="@string/yourclass"
|
||||
android:textColorHint="@color/hintcolor"
|
||||
app:layout_constraintEnd_toStartOf="@+id/chipHelpClasses"
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtNextClass"
|
||||
app:layout_constraintTop_toBottomOf="@+id/txtNextClass"
|
||||
android:importantForAutofill="no">
|
||||
|
||||
<EditText
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/txtClasses"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:animateLayoutChanges="true"
|
||||
android:ems="10"
|
||||
android:gravity="center_horizontal"
|
||||
android:gravity="start"
|
||||
android:imeOptions="flagNoExtractUi"
|
||||
android:inputType="textNoSuggestions"
|
||||
android:singleLine="true"
|
||||
android:textAlignment="center"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="16sp"
|
||||
android:theme="@style/EditTextTheme" />
|
||||
android:textSize="16sp"/>
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
|
||||
@@ -172,48 +160,42 @@
|
||||
android:id="@+id/txtSenior"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="32dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginEnd="32dp"
|
||||
android:text="@string/seniorsetup"
|
||||
android:textAlignment="center"
|
||||
android:gravity="start"
|
||||
android:textColor="@color/textcolor"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintTop_toBottomOf="@+id/txtLayoutClass" />
|
||||
|
||||
<com.google.android.material.textfield.TextInputLayout
|
||||
android:id="@+id/txtLayoutCourses"
|
||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||
android:layout_width="0dp"
|
||||
app:boxStrokeColor="@color/accent"
|
||||
app:boxStrokeWidth="1dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="56dp"
|
||||
android:layout_width="0dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:hint="@string/yourcourses"
|
||||
android:textColorHint="@color/hintcolor"
|
||||
app:layout_constraintEnd_toStartOf="@+id/chipHelpCourses"
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtSenior"
|
||||
app:layout_constraintTop_toBottomOf="@+id/txtSenior">
|
||||
|
||||
<EditText
|
||||
<com.google.android.material.textfield.TextInputEditText
|
||||
android:id="@+id/txtCourses"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:animateLayoutChanges="true"
|
||||
android:ems="10"
|
||||
android:gravity="center_horizontal"
|
||||
android:gravity="start"
|
||||
android:imeOptions="flagNoExtractUi"
|
||||
android:inputType="textNoSuggestions"
|
||||
android:singleLine="true"
|
||||
android:textAlignment="center"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="16sp"
|
||||
android:theme="@style/EditTextTheme"
|
||||
android:importantForAutofill="no"/>
|
||||
|
||||
</com.google.android.material.textfield.TextInputLayout>
|
||||
@@ -232,85 +214,70 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/txtMore"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:text="@string/moresettings"
|
||||
android:textColor="@color/textcolor"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintTop_toBottomOf="@+id/txtLayoutCourses" />
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/cbDark"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="32dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginEnd="32dp"
|
||||
android:text="@string/enabledarkmode"
|
||||
android:textAlignment="viewStart"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintTop_toBottomOf="@+id/txtMore" />
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/cbNotif"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="32dp"
|
||||
android:layout_marginEnd="32dp"
|
||||
android:text="@string/wantnotif"
|
||||
android:textAlignment="viewStart"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintTop_toBottomOf="@+id/cbDark" />
|
||||
|
||||
<CheckBox
|
||||
android:id="@+id/cbPersonalised"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="32dp"
|
||||
android:layout_marginEnd="32dp"
|
||||
android:text="@string/personalised"
|
||||
android:textAlignment="viewStart"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintStart_toStartOf="@+id/txtLayoutClasses"
|
||||
app:layout_constraintTop_toBottomOf="@+id/cbNotif" />
|
||||
|
||||
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
||||
android:id="@+id/efab"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="32dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:backgroundTint="@color/accent"
|
||||
android:text="@string/letsgo"
|
||||
android:textColor="@color/background"
|
||||
app:icon="@drawable/ic_tick"
|
||||
app:iconTint="@color/background"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/cbPersonalised" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
|
||||
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
||||
android:id="@+id/efab"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:backgroundTint="@color/accent"
|
||||
android:text="@string/letsgo"
|
||||
android:textColor="@color/background"
|
||||
app:icon="@drawable/ic_tick"
|
||||
app:iconTint="@color/background"
|
||||
android:layout_gravity="bottom|end"
|
||||
android:translationZ="-1dp"/>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/linearInflation"
|
||||
android:layout_width="match_parent"
|
||||
@@ -321,6 +288,6 @@
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
app:layout_constraintTop_toTopOf="parent"/>
|
||||
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
||||
@@ -16,7 +16,7 @@
|
||||
<androidx.appcompat.widget.Toolbar
|
||||
android:id="@+id/toolbar"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="?attr/actionBarSize"
|
||||
android:layout_height="84dp"
|
||||
app:popupTheme="@style/AppThemeLight.PopupOverlay"
|
||||
app:titleTextColor="@color/accent"
|
||||
app:contentInsetStart="0dp"
|
||||
@@ -31,43 +31,28 @@
|
||||
android:id="@+id/toolbarTxt"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:animateLayoutChanges="true"
|
||||
android:layout_gravity="start"
|
||||
android:fontFamily="@font/manrope_extrabold"
|
||||
android:layoutAnimation="@anim/layout_animation_fall_down"
|
||||
android:text="@string/app_name"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/accent"
|
||||
android:textSize="22sp"
|
||||
android:textSize="24sp"
|
||||
android:singleLine="true"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"/>
|
||||
app:layout_constraintStart_toStartOf="parent"/>
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progressBar"
|
||||
style="?android:attr/progressBarStyleHorizontal"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="2dp"
|
||||
android:progressTint="@color/accent"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
android:animateLayoutChanges="true"
|
||||
android:progressBackgroundTint="@android:color/transparent"/>
|
||||
|
||||
<com.google.android.material.chip.Chip
|
||||
android:id="@+id/chip"
|
||||
<TextView
|
||||
android:id="@+id/text_greeting"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintBottom_toTopOf="@+id/toolbarTxt"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
android:elevation="4dp"
|
||||
android:background="@color/lightbackground"
|
||||
android:textColor="@color/textcolor"/>
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:textColor="@color/accent"
|
||||
android:textSize="18sp"
|
||||
android:fontFamily="@font/manrope_semibold"/>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
android:layout_marginBottom="3dp"
|
||||
app:cardElevation="2dp"
|
||||
android:backgroundTint="@color/lightbackground"
|
||||
app:cardCornerRadius="8dp">
|
||||
app:cardCornerRadius="12dp">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
@@ -194,7 +194,7 @@
|
||||
android:layout_marginBottom="3dp"
|
||||
app:cardElevation="2dp"
|
||||
android:backgroundTint="@color/lightbackground"
|
||||
app:cardCornerRadius="8dp">
|
||||
app:cardCornerRadius="12dp">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
@@ -347,7 +347,7 @@
|
||||
android:layout_marginBottom="3dp"
|
||||
app:cardElevation="2dp"
|
||||
android:backgroundTint="@color/lightbackground"
|
||||
app:cardCornerRadius="8dp">
|
||||
app:cardCornerRadius="12dp">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
|
||||
@@ -6,14 +6,14 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:cardBackgroundColor="@color/lightbackground"
|
||||
app:cardCornerRadius="8dp"
|
||||
app:cardCornerRadius="12dp"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:layout_marginTop="3dp"
|
||||
android:layout_marginBottom="3dp"
|
||||
app:cardElevation="1dp">
|
||||
app:cardElevation="2dp">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
|
||||
@@ -9,11 +9,12 @@
|
||||
android:id="@+id/textviewtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:textSize="22sp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:fontFamily="@font/manrope_semibold"
|
||||
android:layout_gravity="start"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textAlignment="center"/>
|
||||
|
||||
|
||||
@@ -9,11 +9,12 @@
|
||||
android:id="@+id/textviewtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:textSize="22sp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:fontFamily="@font/manrope_semibold"
|
||||
android:layout_gravity="start"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textAlignment="center"/>
|
||||
|
||||
|
||||
@@ -7,11 +7,12 @@
|
||||
android:id="@+id/empty_textviewtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:textSize="22sp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:fontFamily="@font/manrope_semibold"
|
||||
android:layout_gravity="start"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textAlignment="center"/>
|
||||
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
android:layout_height="wrap_content"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:backgroundTint="@color/lightbackground"
|
||||
app:cardCornerRadius="8dp"
|
||||
app:cardCornerRadius="12dp"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:layout_marginTop="3dp"
|
||||
android:layout_marginBottom="3dp"
|
||||
app:cardElevation="1dp">
|
||||
app:cardElevation="2dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
|
||||
@@ -7,11 +7,12 @@
|
||||
android:id="@+id/empty_textviewtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:textSize="22sp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:fontFamily="@font/manrope_semibold"
|
||||
android:layout_gravity="start"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textAlignment="center"/>
|
||||
|
||||
|
||||
@@ -7,11 +7,12 @@
|
||||
android:id="@+id/textviewtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:fontFamily="@font/manrope_semibold"
|
||||
android:textSize="22sp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_gravity="start"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textAlignment="center"/>
|
||||
|
||||
|
||||
@@ -8,11 +8,12 @@
|
||||
android:id="@+id/textviewtitle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginStart="24dp"
|
||||
android:layout_marginEnd="24dp"
|
||||
android:layout_marginTop="16dp"
|
||||
android:fontFamily="@font/manrope_semibold"
|
||||
android:textSize="22sp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_gravity="start"
|
||||
android:textColor="@color/textcolor"
|
||||
android:textAlignment="center"/>
|
||||
|
||||
|
||||
@@ -9,14 +9,14 @@
|
||||
<string name="subst">Vertretungsplan</string>
|
||||
<string name="personal">Persönlich</string>
|
||||
<string name="settings">Einstellungen</string>
|
||||
<string name="plan">Plan</string>
|
||||
<string name="plan">Allgemein</string>
|
||||
<string name="darkbg">Dunkler Hintergrund</string>
|
||||
<string name="notifications">Aktiviere Benachrichtigungen</string>
|
||||
<string name="notifiedabout">Aktiviert ebenfalls Hintergrund-Sync</string>
|
||||
<string name="personalplan">Persönlicher Plan</string>
|
||||
<string name="personalise">Personalisieren</string>
|
||||
<string name="misc">Diverses</string>
|
||||
<string name="defplan">Standardmäßig ansonsten normaler Plan</string>
|
||||
<string name="defplan">Standardmäßig ansonsten allgemeiner Plan</string>
|
||||
<string name="personalised">Persönlicher Plan als Standard</string>
|
||||
<string name="visitweb">Besuche die Schulwebsite</string>
|
||||
<string name="butwhy">Falls nötig</string>
|
||||
@@ -34,19 +34,6 @@
|
||||
<string name="moresettings">Nur noch ein paar weitere Einstellungen.</string>
|
||||
<string name="enabledarkmode">Dunklen Hintergrund aktivieren</string>
|
||||
<string name="havefun">Viel Spaß!</string>
|
||||
<string name="greeting0">Hallo, %s!</string>
|
||||
<string name="greeting1">Wie geht\'s dir, %s?</string>
|
||||
<string name="greeting2">Tagchen, %s!</string>
|
||||
<string name="greeting3">Hey, %s!</string>
|
||||
<string name="greeting4">Wie ist dein Tag, %s?</string>
|
||||
<string name="greeting5">Schön dich zu sehen, %s.</string>
|
||||
<string name="greeting6">Grüß dich, %s!</string>
|
||||
<string name="greeting7">Hallöchen, %s!</string>
|
||||
<string-array name="greeting8_array">
|
||||
<item>"Guten Morgen, "</item>
|
||||
<item>"Guten Tag, "</item>
|
||||
<item>"Schönen Abend, "</item>
|
||||
</string-array>
|
||||
<string name="disablegreeting">Aktiviere Begrüßungen</string>
|
||||
<string name="justnice">Falls du möchtest, dass ich nett bin :)</string>
|
||||
<string name="splan">s Plan</string>
|
||||
@@ -119,4 +106,35 @@
|
||||
<string name="showinfo">Zeige Info-Tab in Navigationsleisete</string>
|
||||
<string name="lastupdatedK">"Zuletzt aktualisiert: "</string>
|
||||
<string name="darkmode2">Aktiviert den Nachtmodus</string>
|
||||
<string name="yourplan">Dein Plan</string>
|
||||
<string-array name="greetings_morning">
|
||||
<item>Guten Morgen, %s!</item>
|
||||
<item>Hab einen schönen Tag, %s.</item>
|
||||
<item>Wie geht\'s dir, %s?</item>
|
||||
<item>Gut geschlafen, %s?</item>
|
||||
<item>Hey, %s!</item>
|
||||
<item>Hi, %s!</item>
|
||||
<item>Schön dich zu sehen, %s.</item>
|
||||
<item>Wie geht\'s dir so, %s?</item>
|
||||
</string-array>
|
||||
<string-array name="greetings_noon">
|
||||
<item>Guten Tag, %s!</item>
|
||||
<item>Einen schönen Tag noch, %s.</item>
|
||||
<item>Wie geht\'s dir, %s?</item>
|
||||
<item>Hoffe du hast einen schönen Tag, %s.</item>
|
||||
<item>Hey, %s!</item>
|
||||
<item>Hi, %s!</item>
|
||||
<item>Schön dich zu sehen, %s.</item>
|
||||
<item>Genieß\' deinen Tag, %s.</item>
|
||||
</string-array>
|
||||
<string-array name="greetings_evening">
|
||||
<item>Good evening, %s!</item>
|
||||
<item>Enjoy your evening, %s.</item>
|
||||
<item>Wie geht\'s dir, %s?</item>
|
||||
<item>Genieß\' deinen Abend, %s.</item>
|
||||
<item>Hey, %s!</item>
|
||||
<item>Hi, %s!</item>
|
||||
<item>Schlaf\' gut, %s.</item>
|
||||
<item>Bleib\' nicht zu lang wach, %s!</item>
|
||||
</string-array>
|
||||
</resources>
|
||||
@@ -8,6 +8,8 @@
|
||||
<color name="hintcolor">#757575</color>
|
||||
<color name="lighthintcolor">#bdbdbd</color>
|
||||
|
||||
<color name="alwaysWhite">#f5f5f5</color>
|
||||
|
||||
<color name="bgred">#F28B82</color>
|
||||
<color name="bgorange">#FBBC04</color>
|
||||
<color name="bgyellow">#FFF475</color>
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
<string name="personal">Personal</string>
|
||||
<string name="settings">Settings</string>
|
||||
<string name="plan">Plan</string>
|
||||
<string name="plan">General</string>
|
||||
|
||||
<!-- for Settings fragment -->
|
||||
<string name="darkbg">Dark background</string>
|
||||
@@ -20,7 +20,7 @@
|
||||
<string name="personalise">Personalise</string>
|
||||
<string name="misc">Miscellaneous</string>
|
||||
<string name="personalised">Set personalised plan as default</string>
|
||||
<string name="defplan">Defaults to normal plan otherwise</string>
|
||||
<string name="defplan">Defaults to general plan otherwise</string>
|
||||
<string name="visitweb">Visit the school\'s website</string>
|
||||
<string name="butwhy">In case you need to</string>
|
||||
<string name="menu">Menu</string>
|
||||
@@ -39,19 +39,6 @@
|
||||
<string name="enabledarkmode">Enable dark mode</string>
|
||||
<string name="havefun">Have fun!</string>
|
||||
|
||||
<string name="greeting0">Hello, %s!</string>
|
||||
<string name="greeting1">How are you, %s?</string>
|
||||
<string name="greeting2">Greetings, %s.</string>
|
||||
<string name="greeting3">Hey, %s!</string>
|
||||
<string name="greeting4">How\'s your day, %s?</string>
|
||||
<string name="greeting5">Nice to see you, %s.</string>
|
||||
<string name="greeting6">You alright, %s?</string>
|
||||
<string name="greeting7">What\'s up, %s?</string>
|
||||
<string-array name="greeting8_array">
|
||||
<item>"Good morning, "</item>
|
||||
<item>"Good day, "</item>
|
||||
<item>"Good evening, "</item>
|
||||
</string-array>
|
||||
<string name="disablegreeting">Enable greeting</string>
|
||||
<string name="justnice">If you want me to be nice :)</string>
|
||||
<string name="splan">\'s Plan</string>
|
||||
@@ -123,6 +110,7 @@
|
||||
<string name="courseWat">WAT</string>
|
||||
<string name="courseFor">Special Education</string>
|
||||
<string name="courseWp">WP & "Methodenstunde"</string>
|
||||
|
||||
<string name="clearall">Clear all</string>
|
||||
<string name="allcolourscleared">Colours for all courses have been cleared</string>
|
||||
<string name="chromecompatible">No Chrome-compatible browser found</string>
|
||||
@@ -131,4 +119,37 @@
|
||||
<string name="swipeindependent">Independent of swipe gesture</string>
|
||||
<string name="lastupdatedK">"Last updated: "</string>
|
||||
<string name="darkmode2">Enables night mode</string>
|
||||
<string name="yourplan">Your Plan</string>
|
||||
|
||||
<string-array name="greetings_morning">
|
||||
<item>Good morning, %s!</item>
|
||||
<item>Have a nice day, %s.</item>
|
||||
<item>How are you, %s?</item>
|
||||
<item>Slept well, %s?</item>
|
||||
<item>Hey, %s!</item>
|
||||
<item>Hi, %s!</item>
|
||||
<item>Nice to see you, %s.</item>
|
||||
<item>How\'ve you been, %s?</item>
|
||||
</string-array>
|
||||
<string-array name="greetings_noon">
|
||||
<item>Good day, %s!</item>
|
||||
<item>Hope you\'re having a nice day, %s.</item>
|
||||
<item>How are you, %s?</item>
|
||||
<item>Enjoying your day, %s?</item>
|
||||
<item>Hey, %s!</item>
|
||||
<item>Hi, %s!</item>
|
||||
<item>Nice to see you, %s.</item>
|
||||
<item>Enjoy your day, %s!</item>
|
||||
</string-array>
|
||||
<string-array name="greetings_evening">
|
||||
<item>Good evening, %s!</item>
|
||||
<item>Enjoy your evening, %s.</item>
|
||||
<item>How are you, %s?</item>
|
||||
<item>Enjoying your evening, %s?</item>
|
||||
<item>Hey, %s!</item>
|
||||
<item>Hi, %s!</item>
|
||||
<item>Sleep tight, %s.</item>
|
||||
<item>Stayin\' up late, %s?</item>
|
||||
</string-array>
|
||||
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user