52 lines
2.1 KiB
XML
52 lines
2.1 KiB
XML
<?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:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/favorite_view"
|
|
tools:context=".ui.favorite.FavoriteFragment">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragment_container"
|
|
android:layout_width="match_parent"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginVertical="32dp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent">
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/topTextView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="20dp"
|
|
android:text="@string/favorite_fragment_name"
|
|
android:textSize="@dimen/text_super_large"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
style="@style/TextDefaultStyle" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/favoriteAdapter"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="20dp"
|
|
android:layout_marginTop="92dp"
|
|
app:layout_constraintTop_toBottomOf="@id/topTextView" />
|
|
|
|
<TextView
|
|
android:id="@+id/noApps"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginHorizontal="20dp"
|
|
android:layout_marginTop="92dp"
|
|
android:text="@string/favorite_fragment_no_apps"
|
|
android:textSize="18sp"
|
|
android:visibility="gone" />
|
|
</FrameLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|