Guest User

Untitled

a guest
Jul 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. <androidx.constraintlayout.widget.ConstraintLayout
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:layout_marginBottom="@dimen/margin_small"
  5. android:background="@android:color/transparent"
  6. android:paddingBottom="@dimen/padding_large">
  7.  
  8.  
  9. <com.an.customfontview.CustomTextView
  10. android:id="@+id/movie_similar_title"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_marginLeft="@dimen/margin_large"
  14. android:gravity="left"
  15. android:text="@string/title_similar_movies"
  16. android:textAllCaps="true"
  17. android:textColor="@android:color/white"
  18. android:textSize="@dimen/font_medium"
  19. app:layout_constraintStart_toStartOf="parent"
  20. app:layout_constraintTop_toTopOf="parent"
  21. app:textFontPath="fonts/gt_medium.otf" />
  22.  
  23. <androidx.recyclerview.widget.RecyclerView
  24. android:id="@+id/movies_list"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_marginLeft="@dimen/margin_large"
  28. android:layout_marginTop="@dimen/margin_medium"
  29. android:paddingTop="@dimen/margin_small"
  30. app:layout_constraintStart_toStartOf="parent"
  31. app:layout_constraintTop_toBottomOf="@+id/movie_similar_title" />
  32.  
  33. </androidx.constraintlayout.widget.ConstraintLayout>
Add Comment
Please, Sign In to add comment