1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
4 |
xmlns:tools="http://schemas.android.com/tools"
|
3 |
gabriel |
5 |
android:layout_width="fill_parent"
|
|
|
6 |
android:layout_height="fill_parent"
|
1 |
efrain |
7 |
android:background="@color/windowBackgroundTopic"
|
3 |
gabriel |
8 |
tools:context=".fragment.GalleryFragment">
|
1 |
efrain |
9 |
|
|
|
10 |
|
|
|
11 |
<androidx.viewpager2.widget.ViewPager2
|
|
|
12 |
android:id="@+id/fragment_gallery_viewpager2"
|
8 |
gabriel |
13 |
android:layout_width="match_parent"
|
|
|
14 |
android:layout_height="match_parent">
|
1 |
efrain |
15 |
|
|
|
16 |
</androidx.viewpager2.widget.ViewPager2>
|
|
|
17 |
|
|
|
18 |
|
|
|
19 |
<ImageButton
|
|
|
20 |
android:id="@+id/fragment_gallery_button_previous"
|
|
|
21 |
android:layout_width="wrap_content"
|
|
|
22 |
android:layout_height="wrap_content"
|
|
|
23 |
android:src="@drawable/exo_ic_chevron_left"
|
3 |
gabriel |
24 |
android:visibility="visible"
|
1 |
efrain |
25 |
app:layout_constraintBottom_toBottomOf="parent"
|
3 |
gabriel |
26 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
27 |
app:layout_constraintTop_toTopOf="parent" />
|
1 |
efrain |
28 |
|
|
|
29 |
|
|
|
30 |
<ImageButton
|
|
|
31 |
android:id="@+id/fragment_gallery_button_next"
|
|
|
32 |
android:layout_width="wrap_content"
|
|
|
33 |
android:layout_height="wrap_content"
|
|
|
34 |
android:src="@drawable/exo_ic_chevron_right"
|
3 |
gabriel |
35 |
android:visibility="visible"
|
1 |
efrain |
36 |
app:layout_constraintBottom_toBottomOf="parent"
|
3 |
gabriel |
37 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
38 |
app:layout_constraintTop_toTopOf="parent" />
|
1 |
efrain |
39 |
</androidx.constraintlayout.widget.ConstraintLayout>
|