teapod/app/src/main/res/layout/fragment_home.xml

77 lines
3.2 KiB
XML
Raw Normal View History

2020-10-08 22:20:20 +02:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/ff_test"
2020-10-08 22:20:20 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f5f5f5"
tools:context=".ui.fragments.HomeFragment">
2020-10-08 22:20:20 +02:00
2020-10-15 21:00:31 +02:00
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2020-10-15 21:00:31 +02:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-10-19 17:34:41 +02:00
android:orientation="vertical"
android:paddingBottom="7dp">
2020-10-15 21:00:31 +02:00
<TextView
2020-10-19 17:34:41 +02:00
android:id="@+id/text_my_list"
2020-10-15 21:00:31 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="10dp"
android:paddingTop="15dp"
android:paddingEnd="5dp"
android:paddingBottom="5dp"
android:text="@string/my_list"
2020-10-15 21:00:31 +02:00
android:textSize="16sp"
android:textStyle="bold" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_my_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/item_media" />
</LinearLayout>
2020-10-19 17:34:41 +02:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="7dp">
<TextView
android:id="@+id/text_new_episodes"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="10dp"
android:paddingTop="15dp"
android:paddingEnd="5dp"
android:paddingBottom="5dp"
android:text="@string/new_episodes"
android:textSize="16sp"
android:textStyle="bold" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_new_episodes"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:listitem="@layout/item_media" />
</LinearLayout>
2020-10-15 21:00:31 +02:00
</LinearLayout>
</ScrollView>
2020-10-08 22:20:20 +02:00
</androidx.constraintlayout.widget.ConstraintLayout>