Proyectos de Subversion Android Microlearning

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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.TopicFragment">
9
 
10
    <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
11
        android:id="@+id/fragment_topic_swipe_layout"
12
        android:layout_width="match_parent"
13
        android:layout_height="match_parent">
14
 
15
 
16
        <androidx.recyclerview.widget.RecyclerView
17
            android:id="@+id/fragment_topic_listview"
18
            android:layout_width="0dp"
19
            android:layout_height="0dp"
20
            android:background="@color/windowBackgroundTopic"
21
            app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
22
            app:spanCount="2"
23
            app:layout_constraintBottom_toBottomOf="parent"
24
            app:layout_constraintEnd_toEndOf="parent"
25
            app:layout_constraintStart_toStartOf="parent"
26
            app:layout_constraintTop_toTopOf="parent" />
27
 
28
    </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
29
 
30
</androidx.constraintlayout.widget.ConstraintLayout>