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 |
<ImageView
|
|
|
16 |
android:id="@+id/fragment_timeline_time_point_icon"
|
|
|
17 |
android:layout_width="50dp"
|
|
|
18 |
android:layout_height="0dp"
|
|
|
19 |
android:src="@drawable/ic_login_black_24dp"
|
|
|
20 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
21 |
app:layout_constraintBottom_toBottomOf="@id/fragment_timeline_time_point_description"
|
|
|
22 |
app:layout_constraintTop_toTopOf="@id/fragment_timeline_time_point_date"/>
|
|
|
23 |
|
|
|
24 |
|
|
|
25 |
<TextView
|
|
|
26 |
android:id="@+id/fragment_timeline_time_point_date"
|
|
|
27 |
android:layout_width="wrap_content"
|
|
|
28 |
android:layout_height="wrap_content"
|
|
|
29 |
android:layout_marginLeft="40dp"
|
|
|
30 |
android:layout_marginStart="40dp"
|
|
|
31 |
android:textStyle="bold"
|
|
|
32 |
android:fontFamily="@font/roboto"
|
|
|
33 |
app:layout_constraintStart_toStartOf="parent"/>
|
|
|
34 |
|
|
|
35 |
|
|
|
36 |
|
|
|
37 |
<TextView
|
|
|
38 |
android:id="@+id/fragment_timeline_time_point_description"
|
|
|
39 |
android:layout_width="wrap_content"
|
|
|
40 |
android:layout_height="wrap_content"
|
|
|
41 |
android:layout_marginTop="8dp"
|
|
|
42 |
android:fontFamily="@font/roboto"
|
|
|
43 |
app:layout_constraintStart_toStartOf="@id/fragment_timeline_time_point_date"
|
|
|
44 |
app:layout_constraintTop_toBottomOf="@id/fragment_timeline_time_point_date"/>
|
|
|
45 |
|
|
|
46 |
</pl.hypeapp.materialtimelineview.MaterialTimelineView>
|