Proyectos de Subversion Android Microlearning

Rev

Rev 1 | Ir a la última revisión | | Comparar con el anterior | 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 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"
3 gabriel 13
        android:layout_width="fill_parent"
14
        android:layout_height="fill_parent"
1 efrain 15
 
3 gabriel 16
        app:layout_constraintBottom_toBottomOf="parent"
1 efrain 17
        app:layout_constraintEnd_toEndOf="parent"
18
        app:layout_constraintHorizontal_bias="0.555"
19
        app:layout_constraintStart_toStartOf="parent"
3 gabriel 20
        app:layout_constraintTop_toTopOf="parent">
1 efrain 21
 
22
    </androidx.viewpager2.widget.ViewPager2>
23
 
24
 
25
    <ImageButton
26
        android:id="@+id/fragment_gallery_button_previous"
27
        android:layout_width="wrap_content"
28
        android:layout_height="wrap_content"
29
        android:src="@drawable/exo_ic_chevron_left"
3 gabriel 30
        android:visibility="visible"
1 efrain 31
        app:layout_constraintBottom_toBottomOf="parent"
3 gabriel 32
        app:layout_constraintLeft_toLeftOf="parent"
33
        app:layout_constraintTop_toTopOf="parent" />
1 efrain 34
 
35
 
36
    <ImageButton
37
        android:id="@+id/fragment_gallery_button_next"
38
        android:layout_width="wrap_content"
39
        android:layout_height="wrap_content"
40
        android:src="@drawable/exo_ic_chevron_right"
3 gabriel 41
        android:visibility="visible"
1 efrain 42
        app:layout_constraintBottom_toBottomOf="parent"
3 gabriel 43
        app:layout_constraintRight_toRightOf="parent"
44
        app:layout_constraintTop_toTopOf="parent" />
1 efrain 45
</androidx.constraintlayout.widget.ConstraintLayout>