1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
4 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
5 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
6 |
android:layout_width="match_parent"
|
|
|
7 |
android:layout_height="match_parent"
|
|
|
8 |
tools:context=".fragment.CapsuleFragment">
|
|
|
9 |
|
|
|
10 |
<androidx.recyclerview.widget.RecyclerView
|
|
|
11 |
android:id="@+id/fragment_slide_listview"
|
|
|
12 |
android:layout_width="0dp"
|
|
|
13 |
android:layout_height="0dp"
|
|
|
14 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
15 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
16 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
17 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
18 |
android:background="@color/windowBackgroundTopic"
|
|
|
19 |
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
|
|
|
20 |
app:spanCount="2"
|
|
|
21 |
/>
|
|
|
22 |
|
|
|
23 |
</androidx.constraintlayout.widget.ConstraintLayout>
|