Proyectos de Subversion Android Microlearning

Rev

Rev 3 | Ir a la última revisión | | 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"
5
    android:layout_width="match_parent"
6
    android:layout_height="match_parent"
7
    tools:context=".fragment.GalleryFragment"
8
    android:background="@color/windowBackgroundTopic"
9
    android:padding="5dp">
10
 
11
 
12
    <androidx.viewpager2.widget.ViewPager2
13
        android:id="@+id/fragment_gallery_viewpager2"
14
        android:layout_width="match_parent"
15
        android:layout_height="match_parent"
16
 
17
        app:layout_constraintEnd_toEndOf="parent"
18
        app:layout_constraintHorizontal_bias="0.555"
19
        app:layout_constraintStart_toStartOf="parent"
20
        tools:layout_editor_absoluteY="16dp">
21
 
22
    </androidx.viewpager2.widget.ViewPager2>
23
 
24
 
25
 
26
    <ImageButton
27
        android:id="@+id/fragment_gallery_button_previous"
28
        android:layout_width="wrap_content"
29
        android:layout_height="wrap_content"
30
        android:src="@drawable/exo_ic_chevron_left"
31
        app:layout_constraintTop_toTopOf="parent"
32
        app:layout_constraintBottom_toBottomOf="parent"
33
        app:layout_constraintLeft_toLeftOf="parent"/>
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"
41
        app:layout_constraintTop_toTopOf="parent"
42
        app:layout_constraintBottom_toBottomOf="parent"
43
        app:layout_constraintRight_toRightOf="parent"/>
44
</androidx.constraintlayout.widget.ConstraintLayout>