1 |
gabriel |
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 |
<Button
|
|
|
11 |
android:id="@+id/button3"
|
|
|
12 |
android:layout_width="wrap_content"
|
|
|
13 |
android:layout_height="wrap_content"
|
|
|
14 |
android:text="Eliminar Token"
|
|
|
15 |
android:visibility="gone"
|
|
|
16 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
17 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
18 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
19 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
20 |
tools:visibility="gone" />
|
|
|
21 |
|
|
|
22 |
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
23 |
android:id="@+id/fragment_topic_swipe_layout"
|
|
|
24 |
android:layout_width="match_parent"
|
|
|
25 |
android:layout_height="match_parent">
|
|
|
26 |
|
|
|
27 |
|
|
|
28 |
<androidx.recyclerview.widget.RecyclerView
|
|
|
29 |
android:id="@+id/fragment_topic_listview"
|
|
|
30 |
android:layout_width="0dp"
|
|
|
31 |
android:layout_height="0dp"
|
|
|
32 |
android:background="@color/colorNudeNew"
|
|
|
33 |
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
|
|
|
34 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
35 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
36 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
37 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
38 |
app:spanCount="2" />
|
|
|
39 |
|
|
|
40 |
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
41 |
|
|
|
42 |
</androidx.constraintlayout.widget.ConstraintLayout>
|