|
@@ -2,7 +2,7 @@
|
2
|
2
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3
|
3
|
xmlns:tools="http://schemas.android.com/tools"
|
4
|
4
|
android:orientation="horizontal"
|
5
|
|
- android:layout_width="wrap_content"
|
|
5
|
+ android:layout_width="match_parent"
|
6
|
6
|
android:layout_height="wrap_content"
|
7
|
7
|
android:background="@color/backgroundLayoutGrey"
|
8
|
8
|
android:padding="16dp"
|
|
@@ -11,28 +11,29 @@
|
11
|
11
|
<TextView
|
12
|
12
|
android:id="@+id/tv_document_name"
|
13
|
13
|
style="@style/DocumentText"
|
14
|
|
- android:layout_width="match_parent"
|
|
14
|
+ android:layout_width="70dp"
|
15
|
15
|
android:layout_height="wrap_content"
|
16
|
|
- android:layout_marginStart="8dp"
|
17
|
|
- android:layout_marginEnd="8dp"
|
|
16
|
+ android:layout_marginStart="4dp"
|
|
17
|
+ android:layout_marginEnd="4dp"
|
18
|
18
|
tools:text="ID CARD KARYAWAN" />
|
19
|
19
|
|
20
|
20
|
<TextView
|
21
|
21
|
android:id="@+id/tv_document_status"
|
22
|
22
|
style="@style/DocumentText"
|
23
|
|
- android:layout_width="match_parent"
|
|
23
|
+ android:layout_width="55dp"
|
24
|
24
|
android:layout_height="wrap_content"
|
25
|
|
- android:layout_marginStart="8dp"
|
26
|
|
- android:layout_marginEnd="8dp"
|
27
|
|
- tools:text="EXPIRED" />
|
|
25
|
+ android:layout_marginStart="4dp"
|
|
26
|
+ android:layout_marginEnd="4dp"
|
|
27
|
+ android:gravity="center"
|
|
28
|
+ tools:text="NOT FOUND" />
|
28
|
29
|
|
29
|
30
|
<TextView
|
30
|
31
|
android:id="@+id/tv_document_date"
|
31
|
32
|
style="@style/DocumentText"
|
32
|
|
- android:layout_width="match_parent"
|
|
33
|
+ android:layout_width="wrap_content"
|
33
|
34
|
android:layout_height="wrap_content"
|
34
|
|
- android:layout_marginStart="8dp"
|
35
|
|
- android:layout_marginEnd="8dp"
|
|
35
|
+ android:layout_marginStart="4dp"
|
|
36
|
+ android:layout_marginEnd="4dp"
|
36
|
37
|
tools:text="1-Jul-2019" />
|
37
|
38
|
|
38
|
39
|
</LinearLayout>
|