add favorite list to home screen

This commit is contained in:
2020-10-15 21:00:31 +02:00
parent a8dc243d0e
commit 474b72df49
15 changed files with 206 additions and 29 deletions

View File

@ -113,6 +113,20 @@
android:layout_marginEnd="12dp"
android:text="@string/text_overview_ex" />
<CheckBox
android:id="@+id/check_my_list"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginStart="31dp"
android:layout_marginTop="7dp"
android:layout_marginEnd="7dp"
android:layout_marginBottom="7dp"
android:button="@drawable/sl_favourite_24dp"
android:scaleX="2.0"
android:scaleY="2.0"
app:buttonTint="#4A4141" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_episodes"
android:layout_width="match_parent"
@ -120,7 +134,8 @@
android:layout_marginStart="7dp"
android:layout_marginTop="17dp"
android:layout_marginEnd="7dp"
tools:layout_editor_absoluteY="298dp" />
tools:layout_editor_absoluteY="298dp"
tools:listitem="@layout/item_episode" />
</LinearLayout>
</androidx.core.widget.NestedScrollView>