Proyectos de Subversion Android Microlearning

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?xml version="1.0" encoding="utf-8"?>
2
<pl.hypeapp.materialtimelineview.MaterialTimelineView
3
    xmlns:android="http://schemas.android.com/apk/res/android"
4
    xmlns:app="http://schemas.android.com/apk/res-auto"
5
    android:layout_width="match_parent"
6
    android:layout_height="wrap_content"
7
    android:paddingBottom="16dp"
8
    android:paddingTop="16dp"
9
    android:paddingLeft="16dp"
10
    android:paddingRight="21dp"
11
    app:timeline_margin_start="32dp"
12
    app:timeline_position="middle"
13
    app:timeline_type="line">
14
 
15
    <TextView
16
        android:id="@+id/fragment_userprofile_item_label"
17
        android:layout_width="wrap_content"
18
        android:layout_height="wrap_content"
19
        android:layout_marginLeft="30dp"
20
        android:layout_marginTop="10dp"
21
        style="@style/textview_title1"
22
        android:text="Label"
23
        app:layout_constraintStart_toStartOf="parent" />
24
 
25
 
26
    <TextView
27
        android:id="@+id/fragment_userprofile_item_value"
28
        android:layout_width="wrap_content"
29
        android:layout_height="wrap_content"
30
        android:layout_marginLeft="30dp"
31
        android:layout_marginRight="10dp"
32
        android:layout_marginTop="10dp"
33
        android:layout_marginBottom="10dp"
34
        style="@style/textview_title2"
35
        android:text="Value"
36
        app:layout_constraintTop_toBottomOf="@id/fragment_userprofile_item_label"
37
        app:layout_constraintLeft_toLeftOf="parent"/>
38
 
39
 
40
</pl.hypeapp.materialtimelineview.MaterialTimelineView>