layout_acting_experience.xml
2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="14dp"
android:text="1990"
android:textColor="@color/color_959595"
android:textSize="14sp" />
<TextView
android:id="@+id/tv_acting_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="7dp"
android:layout_toRightOf="@+id/imageView"
android:lineSpacingExtra="10dp"
android:text="11111111111111111111111111111111111111111111111111111111111111111111111111"
android:textColor="@color/color_666"
android:textSize="14sp" />
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="3dp"
android:layout_marginLeft="17dp"
android:layout_marginStart="18dp"
android:layout_toEndOf="@+id/tv_date"
android:background="@mipmap/ima_orange_samll" />
<View
android:layout_width="1dp"
android:id="@+id/view_showline"
android:layout_height="wrap_content"
android:layout_below="@id/imageView"
android:layout_marginLeft="22.7dp"
android:layout_marginTop="3dp"
android:layout_alignBottom="@id/tv_acting_content"
android:layout_toRightOf="@id/tv_date"
android:background="@color/color_ededed" />
</RelativeLayout>
</LinearLayout>