Skip to content

Commit 8581b61

Browse files
committed
Restore item_activity_simple.xml layout - Was incorrectly deleted but still used by AppActivityAdapter
1 parent 252b55d commit 8581b61

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:layout_width="match_parent"
4+
android:layout_height="wrap_content"
5+
android:orientation="horizontal"
6+
android:gravity="center_vertical"
7+
android:paddingHorizontal="16dp"
8+
android:paddingVertical="10dp"
9+
android:background="?attr/selectableItemBackground">
10+
11+
<TextView
12+
android:id="@+id/tvActivityName"
13+
android:layout_width="0dp"
14+
android:layout_height="wrap_content"
15+
android:layout_weight="1"
16+
android:textSize="13sp"
17+
android:ellipsize="end"
18+
android:maxLines="1" />
19+
20+
<TextView
21+
android:id="@+id/tvExported"
22+
android:layout_width="wrap_content"
23+
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" />
29+
30+
</LinearLayout>

0 commit comments

Comments
 (0)