Newer
Older
CitrusClient / app / src / main / res / layout / fragment_favorites_books.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".views.FavoritesBooksFragment">
  8.  
  9. <!-- TODO: Update blank fragment layout -->
  10. <ScrollView
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent">
  13. <LinearLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:orientation="vertical" >
  17. <androidx.constraintlayout.widget.ConstraintLayout
  18. android:layout_width="match_parent"
  19. android:layout_height="834dp"
  20. android:background="#FFFFFF">
  21.  
  22. <androidx.recyclerview.widget.RecyclerView
  23. android:id="@+id/my_favorites_list"
  24. android:layout_width="415dp"
  25. android:layout_height="120dp"
  26. app:layout_constraintBottom_toBottomOf="parent"
  27. app:layout_constraintEnd_toEndOf="parent"
  28. app:layout_constraintHorizontal_bias="0.0"
  29. app:layout_constraintStart_toStartOf="parent"
  30. app:layout_constraintTop_toTopOf="parent"
  31. app:layout_constraintVertical_bias="0.145" />
  32.  
  33. <TextView
  34. android:id="@+id/textView3"
  35. android:layout_width="212dp"
  36. android:layout_height="35dp"
  37. android:text="いいねした投稿"
  38. android:textAlignment="center"
  39. android:textColor="@color/black"
  40. android:textSize="20sp"
  41. app:layout_constraintBottom_toBottomOf="parent"
  42. app:layout_constraintEnd_toEndOf="parent"
  43. app:layout_constraintHorizontal_bias="0.497"
  44. app:layout_constraintStart_toStartOf="parent"
  45. app:layout_constraintTop_toTopOf="parent"
  46. app:layout_constraintVertical_bias="0.055" />
  47. </androidx.constraintlayout.widget.ConstraintLayout>
  48. </LinearLayout>
  49. </ScrollView>
  50. </FrameLayout>