blob: fda4ff6c7be6074399b4e32f5a710649e528bb87 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:minHeight="?android:attr/listPreferredItemHeight"
android:layout_height="wrap_content"
android:paddingBottom="5dp"
android:paddingStart="8dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageButton
android:padding="5dp"
android:layout_width="@android:dimen/app_icon_size"
style="?android:attr/borderlessButtonStyle"
android:id="@+id/icon"
android:layout_height="@android:dimen/app_icon_size" />
<View
android:layout_width="2dp"
android:layout_height="match_parent"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginEnd="5dp"
android:layout_marginStart="5dp"
android:background="@android:drawable/divider_horizontal_dark" />
<Button
android:layout_width="match_parent"
style="?android:attr/borderlessButtonStyle"
android:gravity="start|center_vertical"
android:paddingStart="5dp"
android:layout_height="wrap_content"
android:id="@+id/label" />
</LinearLayout>
|