-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathfragment_videos.xml
22 lines (20 loc) · 1.07 KB
/
fragment_videos.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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">
<com.arthurivanets.arvi.widget.PlayableItemsRecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="@dimen/videos_recycler_view_padding_top"
android:paddingBottom="@dimen/videos_recycler_view_padding_bottom"
android:paddingLeft="@dimen/videos_recycler_view_padding_left"
android:paddingStart="@dimen/videos_recycler_view_padding_left"
android:paddingRight="@dimen/videos_recycler_view_padding_right"
android:paddingEnd="@dimen/videos_recycler_view_padding_right"
android:overScrollMode="never"
android:clipToPadding="false"/>
</androidx.constraintlayout.widget.ConstraintLayout>