aboutsummaryrefslogtreecommitdiff
path: root/wearable/wear/WearAccessibilityApp/Wearable/src/main/res/layout/app_item_layout.xml
blob: 5e71559d09bcccdf372c7397289721e7d2b375d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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:padding="4dp"
    android:paddingEnd="?android:listPreferredItemPaddingEnd">
    <ImageView
        android:id="@+id/icon_image_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_view_list_white_1x_web_48dp"/>
    <TextView
        android:id="@+id/icon_text_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginStart="8dp"
        android:gravity="center_vertical"
        android:text="@string/default_text"
        android:textAppearance="@style/android:TextAppearance.Material.Body1"/>
</LinearLayout>