<?xml version="1.0" encoding="utf-8"?> <FrameLayout 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" tools:context=".views.FavoritesBooksFragment"> <!-- TODO: Update blank fragment layout --> <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" > <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent" android:layout_height="834dp" android:background="#FFFFFF"> <androidx.recyclerview.widget.RecyclerView android:id="@+id/my_favorites_list" android:layout_width="415dp" android:layout_height="120dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.0" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="0.145" /> <TextView android:id="@+id/textView3" android:layout_width="212dp" android:layout_height="35dp" android:text="いいねした投稿" android:textAlignment="center" android:textColor="@color/black" android:textSize="20sp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.497" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="0.055" /> </androidx.constraintlayout.widget.ConstraintLayout> </LinearLayout> </ScrollView> </FrameLayout>