Proyectos de Subversion Android Microlearning

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 3
Línea 1... Línea 1...
1
<?xml version="1.0" encoding="utf-8"?>
1
<?xml version="1.0" encoding="utf-8"?>
2
<androidx.constraintlayout.widget.ConstraintLayout
-
 
3
    xmlns:android="http://schemas.android.com/apk/res/android"
2
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
4
    xmlns:app="http://schemas.android.com/apk/res-auto"
3
    xmlns:app="http://schemas.android.com/apk/res-auto"
5
    xmlns:tools="http://schemas.android.com/tools"
4
    xmlns:tools="http://schemas.android.com/tools"
-
 
5
    android:layout_width="fill_parent"
-
 
6
    android:layout_height="fill_parent"
6
    android:orientation="vertical"
7
    android:orientation="vertical"
7
    android:layout_width="match_parent"
-
 
8
    android:layout_height="match_parent"
-
 
9
    tools:context=".fragment.GalleryFragment">
8
    tools:context=".fragment.GalleryFragment">
Línea 10... Línea 9...
10
 
9
 
11
 
10
 
12
    <ImageView
11
    <ImageView
13
        android:id="@+id/fragment_gallery_viewpage_item_image"
12
        android:id="@+id/fragment_gallery_viewpage_item_image"
14
        android:layout_width="match_parent"
13
        android:layout_width="fill_parent"
15
        android:layout_height="match_parent"
-
 
16
        android:adjustViewBounds="true"
14
        android:layout_height="fill_parent"
17
        android:padding="10dp"
15
        android:adjustViewBounds="true"
18
        android:scaleType="centerCrop"
16
        android:scaleType="centerCrop"
19
        app:layout_constraintBottom_toBottomOf="parent"
17
        app:layout_constraintBottom_toBottomOf="parent"
20
        app:layout_constraintHorizontal_bias="1.0"
18
        app:layout_constraintHorizontal_bias="1.0"
21
        app:layout_constraintLeft_toLeftOf="parent"
19
        app:layout_constraintLeft_toLeftOf="parent"
22
        app:layout_constraintRight_toRightOf="parent"
20
        app:layout_constraintRight_toRightOf="parent"
23
        app:layout_constraintTop_toTopOf="parent"
21
        app:layout_constraintTop_toTopOf="parent"
Línea 24... Línea 22...
24
        app:layout_constraintVertical_bias="0.0"
22
        app:layout_constraintVertical_bias="0.0"
25
        tools:srcCompat="@tools:sample/avatars" />
-
 
26
 
23
        tools:srcCompat="@tools:sample/avatars" />
-
 
24
 
27
    <Button
25
    <Button
28
        style="@style/button_gallery_launcher"
26
        android:id="@+id/fragment_gallery_viewpage_item_button_finish"
Línea 29... Línea 27...
29
        android:id="@+id/fragment_gallery_viewpage_item_button_finish"
27
        style="@style/button_gallery_launcher"
30
        android:layout_width="140dp"
-
 
31
        android:layout_height="80dp"
28
        android:layout_width="140dp"
32
 
29
        android:layout_height="80dp"
33
        android:text="@string/signup_finalizar"
30
 
-
 
31
        android:text="@string/signup_finalizar"
Línea 34... Línea 32...
34
        app:layout_constraintTop_toTopOf="parent"
32
        app:layout_constraintBottom_toBottomOf="parent"
35
        app:layout_constraintBottom_toBottomOf="parent"
-
 
36
        app:layout_constraintLeft_toLeftOf="parent"
33
        app:layout_constraintLeft_toLeftOf="parent"
-
 
34
        app:layout_constraintRight_toRightOf="parent"
37
        app:layout_constraintRight_toRightOf="parent"/>
35
        app:layout_constraintTop_toTopOf="parent" />
38
 
36
 
39
    <Button
-
 
40
        style="@style/button_gallery_launcher"
37
    <Button
41
        android:id="@+id/fragment_gallery_viewpage_item_button_viewer"
38
        android:id="@+id/fragment_gallery_viewpage_item_button_viewer"
-
 
39
        style="@style/button_gallery_launcher"
42
        android:layout_width="wrap_content"
40
        android:layout_width="wrap_content"
43
        android:layout_height="wrap_content"
41
        android:layout_height="wrap_content"
Línea 44... Línea 42...
44
        android:text="Button"
42
        android:layout_marginRight="20dp"
45
        android:layout_marginRight="20dp"
43
        android:layout_marginBottom="20dp"
46
        android:layout_marginBottom="20dp"
44
        android:text="Button"
Línea 59... Línea 57...
59
        app:layout_constraintTop_toTopOf="parent"
57
        app:layout_constraintTop_toTopOf="parent"
60
        app:layout_constraintVertical_bias="0.1"
58
        app:layout_constraintVertical_bias="0.1"
61
        app:srcCompat="@drawable/ic_check_circle_black_24dp" />
59
        app:srcCompat="@drawable/ic_check_circle_black_24dp" />
Línea 62... Línea -...
62
 
-
 
63
 
-
 
64
 
60