|
2 | 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 | 3 | android:layout_width="match_parent" |
4 | 4 | android:layout_height="wrap_content" |
5 | | - android:orientation="horizontal" |
6 | | - android:gravity="center_vertical" |
| 5 | + android:orientation="vertical" |
7 | 6 | android:paddingHorizontal="16dp" |
8 | 7 | android:paddingVertical="10dp" |
9 | 8 | android:background="?attr/selectableItemBackground"> |
10 | 9 |
|
11 | | - <TextView |
12 | | - android:id="@+id/tvActivityName" |
13 | | - android:layout_width="0dp" |
| 10 | + <LinearLayout |
| 11 | + android:layout_width="match_parent" |
14 | 12 | android:layout_height="wrap_content" |
15 | | - android:layout_weight="1" |
16 | | - android:textSize="13sp" |
17 | | - android:ellipsize="end" |
18 | | - android:maxLines="1" /> |
| 13 | + android:orientation="horizontal" |
| 14 | + android:gravity="center_vertical"> |
| 15 | + |
| 16 | + <TextView |
| 17 | + android:id="@+id/tvActivityName" |
| 18 | + android:layout_width="0dp" |
| 19 | + android:layout_height="wrap_content" |
| 20 | + android:layout_weight="1" |
| 21 | + android:textSize="14sp" |
| 22 | + android:textStyle="bold" |
| 23 | + android:ellipsize="end" |
| 24 | + android:maxLines="1" /> |
| 25 | + |
| 26 | + <TextView |
| 27 | + android:id="@+id/tvExported" |
| 28 | + android:layout_width="wrap_content" |
| 29 | + android:layout_height="wrap_content" |
| 30 | + android:text="@string/badge_exported" |
| 31 | + android:textSize="10sp" |
| 32 | + android:textColor="@color/status_positive" |
| 33 | + android:textStyle="bold" |
| 34 | + android:visibility="gone" /> |
| 35 | + </LinearLayout> |
19 | 36 |
|
20 | 37 | <TextView |
21 | | - android:id="@+id/tvExported" |
22 | | - android:layout_width="wrap_content" |
| 38 | + android:id="@+id/tvFullPath" |
| 39 | + android:layout_width="match_parent" |
23 | 40 | android:layout_height="wrap_content" |
24 | | - android:text="@string/badge_exported" |
25 | | - android:textSize="10sp" |
26 | | - android:textColor="@color/status_positive" |
27 | | - android:textStyle="bold" |
28 | | - android:visibility="gone" /> |
| 41 | + android:textSize="11sp" |
| 42 | + android:textColor="@color/on_surface_secondary" |
| 43 | + android:fontFamily="monospace" |
| 44 | + android:ellipsize="middle" |
| 45 | + android:maxLines="1" |
| 46 | + android:layout_marginTop="2dp" /> |
29 | 47 |
|
30 | 48 | </LinearLayout> |
0 commit comments