Proyectos de Subversion Android Microlearning

Rev

Rev 1 | | 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"?>
3 gabriel 2
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
1 efrain 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:orientation="vertical"
8
    tools:context=".fragment.GalleryFragment">
9
 
10
 
11
    <ImageView
12
        android:id="@+id/fragment_gallery_viewpage_item_image"
3 gabriel 13
        android:layout_width="fill_parent"
14
        android:layout_height="fill_parent"
1 efrain 15
        android:adjustViewBounds="true"
16
        android:scaleType="centerCrop"
17
        app:layout_constraintBottom_toBottomOf="parent"
18
        app:layout_constraintHorizontal_bias="1.0"
19
        app:layout_constraintLeft_toLeftOf="parent"
20
        app:layout_constraintRight_toRightOf="parent"
21
        app:layout_constraintTop_toTopOf="parent"
22
        app:layout_constraintVertical_bias="0.0"
23
        tools:srcCompat="@tools:sample/avatars" />
24
 
25
    <Button
3 gabriel 26
        android:id="@+id/fragment_gallery_viewpage_item_button_finish"
1 efrain 27
        style="@style/button_gallery_launcher"
28
        android:layout_width="140dp"
29
        android:layout_height="80dp"
30
 
31
        android:text="@string/signup_finalizar"
32
        app:layout_constraintBottom_toBottomOf="parent"
33
        app:layout_constraintLeft_toLeftOf="parent"
3 gabriel 34
        app:layout_constraintRight_toRightOf="parent"
35
        app:layout_constraintTop_toTopOf="parent" />
1 efrain 36
 
37
    <Button
3 gabriel 38
        android:id="@+id/fragment_gallery_viewpage_item_button_viewer"
1 efrain 39
        style="@style/button_gallery_launcher"
40
        android:layout_width="wrap_content"
41
        android:layout_height="wrap_content"
42
        android:layout_marginRight="20dp"
43
        android:layout_marginBottom="20dp"
3 gabriel 44
        android:text="Button"
1 efrain 45
        app:layout_constraintBottom_toBottomOf="parent"
3 gabriel 46
        app:layout_constraintRight_toRightOf="parent" />
1 efrain 47
 
48
 
49
    <ImageView
50
        android:id="@+id/fragment_gallery_viewpage_item_check_ready"
51
        android:layout_width="wrap_content"
52
        android:layout_height="wrap_content"
53
        app:layout_constraintBottom_toBottomOf="parent"
54
        app:layout_constraintHorizontal_bias="0.9"
55
        app:layout_constraintLeft_toLeftOf="parent"
56
        app:layout_constraintRight_toRightOf="parent"
57
        app:layout_constraintTop_toTopOf="parent"
58
        app:layout_constraintVertical_bias="0.1"
59
        app:srcCompat="@drawable/ic_check_circle_black_24dp" />
60
 
61
 
62
</androidx.constraintlayout.widget.ConstraintLayout>
63