Proyectos de Subversion Android Microlearning - Inconcert

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 gabriel 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"
5
    android:layout_width="fill_parent"
6
    android:layout_height="fill_parent"
7
    android:background="@color/windowBackgroundTopic"
8
    tools:context=".fragment.GalleryFragment">
9
 
10
 
11
    <androidx.viewpager2.widget.ViewPager2
12
        android:id="@+id/fragment_gallery_viewpager2"
13
        android:layout_width="match_parent"
14
        android:layout_height="match_parent">
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"
24
        android:visibility="visible"
25
        app:layout_constraintBottom_toBottomOf="parent"
26
        app:layout_constraintLeft_toLeftOf="parent"
27
        app:layout_constraintTop_toTopOf="parent" />
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"
35
        android:visibility="visible"
36
        app:layout_constraintBottom_toBottomOf="parent"
37
        app:layout_constraintRight_toRightOf="parent"
38
        app:layout_constraintTop_toTopOf="parent" />
39
</androidx.constraintlayout.widget.ConstraintLayout>