You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
5.2 KiB
110 lines
5.2 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
xmlns:tools="http://schemas.android.com/tools" |
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
tools:context=".HomeFragment"> |
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent"> |
|
|
|
<androidx.cardview.widget.CardView |
|
android:id="@+id/cardView" |
|
android:layout_width="0dp" |
|
android:layout_height="125dp" |
|
android:layout_marginStart="5dp" |
|
android:layout_marginTop="5dp" |
|
android:layout_marginEnd="5dp" |
|
android:clickable="false" |
|
android:maxHeight="125dp" |
|
app:cardCornerRadius="15dp" |
|
app:cardUseCompatPadding="true" |
|
app:layout_constraintEnd_toEndOf="parent" |
|
app:layout_constraintHorizontal_bias="1.0" |
|
app:layout_constraintStart_toStartOf="parent" |
|
app:layout_constraintTop_toTopOf="parent"> |
|
|
|
<LinearLayout |
|
android:orientation="vertical" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent"> |
|
<TextView |
|
android:text="@string/essen_1" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" android:id="@+id/txtView_Menu1Heading" |
|
android:textStyle="bold" android:textAlignment="center" android:textSize="16sp" |
|
android:typeface="sans" android:fontFamily="sans-serif" android:paddingBottom="5dp"/> |
|
<TextView |
|
android:id="@+id/txtView_Menu1" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:fontFamily="sans-serif" |
|
android:textAlignment="center" |
|
android:textSize="16sp" |
|
android:textStyle="bold" |
|
android:typeface="sans"/> |
|
</LinearLayout> |
|
</androidx.cardview.widget.CardView> |
|
|
|
<androidx.cardview.widget.CardView |
|
android:id="@+id/cardView2" |
|
android:layout_width="0dp" |
|
android:layout_height="125dp" |
|
android:layout_marginStart="5dp" |
|
android:layout_marginEnd="5dp" |
|
app:cardCornerRadius="15dp" |
|
app:cardUseCompatPadding="true" |
|
app:layout_constraintEnd_toEndOf="parent" |
|
app:layout_constraintHorizontal_bias="1.0" |
|
app:layout_constraintStart_toStartOf="parent" |
|
app:layout_constraintTop_toBottomOf="@+id/cardView"> |
|
|
|
<LinearLayout |
|
android:orientation="vertical" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent"> |
|
<TextView |
|
android:text="@string/essen_2" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" android:id="@+id/txtView_Menu2Heading" |
|
android:textAlignment="center" android:textStyle="bold" android:textSize="16sp" |
|
android:typeface="sans" android:fontFamily="sans-serif" android:paddingBottom="5dp"/> |
|
<TextView |
|
android:id="@+id/txtView_Menu2" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:fontFamily="sans-serif" |
|
android:textAlignment="center" |
|
android:textSize="16sp" |
|
android:textStyle="bold" |
|
android:typeface="sans"/> |
|
</LinearLayout> |
|
</androidx.cardview.widget.CardView> |
|
|
|
<ScrollView |
|
android:layout_width="0dp" |
|
android:layout_height="0dp" |
|
app:layout_constraintBottom_toBottomOf="parent" |
|
app:layout_constraintEnd_toEndOf="parent" |
|
app:layout_constraintStart_toStartOf="parent" |
|
app:layout_constraintTop_toBottomOf="@+id/cardView2" android:id="@+id/scrollView_TimeTable" |
|
android:background="@color/colorPrimary" android:paddingTop="6dp"> |
|
|
|
<LinearLayout |
|
android:id="@+id/linLayout_TimeTable" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:orientation="vertical" |
|
app:layout_constraintBottom_toBottomOf="parent" |
|
app:layout_constraintEnd_toEndOf="parent" |
|
app:layout_constraintStart_toStartOf="parent" |
|
app:layout_constraintTop_toBottomOf="@+id/cardView2"> |
|
|
|
</LinearLayout> |
|
</ScrollView> |
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |
|
|
|
</FrameLayout> |