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
<androidx.cardview.widget.CardView
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
    app:cardBackgroundColor="@android:color/transparent"
8
    app:cardCornerRadius="5dp"
9
    app:cardElevation="0dp">
10
 
11
    <pl.hypeapp.materialtimelineview.MaterialTimelineView
12
        android:layout_width="match_parent"
13
        android:layout_height="match_parent"
14
        android:background="@color/backgroundTopicFooter"
15
        android:padding="16dp"
16
        app:layout_constraintEnd_toEndOf="parent"
17
        app:layout_constraintEnd_toStartOf="parent"
18
        app:timeline_margin_start="32dp"
19
        app:timeline_position="first"
20
        app:timeline_type="item">
21
 
22
        <ImageView
23
            android:id="@+id/fragment_userprofile_item_header_company_image"
24
            android:layout_width="40dp"
25
            android:layout_height="40dp"
26
            app:layout_constraintRight_toRightOf="parent"
27
            app:layout_constraintTop_toTopOf="parent"
28
            app:layout_constraintBottom_toBottomOf="parent"
29
            />
30
 
31
 
32
 
33
        <TextView
34
            android:id="@+id/fragment_userprofile_item_header_company_name"
35
            android:layout_width="wrap_content"
36
            android:layout_height="wrap_content"
37
            android:layout_marginTop="8dp"
38
            android:layout_marginBottom="8dp"
39
            android:layout_marginLeft="8dp"
40
            android:layout_marginRight="8dp"
41
            android:textSize="18sp"
42
            android:fontFamily="@font/roboto"
43
            android:textStyle="bold"
44
            app:layout_constraintTop_toTopOf="parent"
45
            app:layout_constraintTop_toBottomOf="parent"
46
            app:layout_constraintLeft_toLeftOf="parent"
47
            />
48
 
49
 
50
    </pl.hypeapp.materialtimelineview.MaterialTimelineView>
51
 
52
</androidx.cardview.widget.CardView>