123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingLeft="@dimen/md_dialog_frame_margin"
- android:paddingStart="@dimen/md_dialog_frame_margin"
- android:paddingRight="@dimen/md_dialog_frame_margin"
- android:paddingEnd="@dimen/md_dialog_frame_margin"
- android:paddingTop="@dimen/md_simplelistitem_padding_top"
- android:paddingBottom="@dimen/md_simplelistitem_padding_top"
- android:gravity="start|center_vertical"
- android:minHeight="@dimen/md_listitem_height">
- <TextView
- android:id="@android:id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="@dimen/md_content_textsize"
- tools:text="Title" />
- <ImageView
- android:id="@android:id/icon"
- android:layout_width="@dimen/md_simplelist_icon"
- android:layout_height="@dimen/md_simplelist_icon"
- tools:background="#f5f5f5"
- android:layout_marginLeft="@dimen/md_simplelist_icon_margin"
- android:layout_marginStart="@dimen/md_simplelist_icon_margin"
- android:scaleType="fitXY"
- tools:ignore="ContentDescription" />
- </LinearLayout>
|