30 lines
No EOL
1,010 B
XML
30 lines
No EOL
1,010 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/package_delivered_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/bottom_sheet_list_item_height"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:minHeight="@dimen/bottom_sheet_list_item_height"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="64dp"
|
|
android:layout_marginStart="64dp"
|
|
android:layout_weight="1"
|
|
android:ellipsize="end"
|
|
android:gravity="center_vertical"
|
|
android:maxLines="1"
|
|
android:textAppearance="@style/TextAppearance.ListItemTitle" />
|
|
|
|
<View
|
|
android:id="@+id/bottom_divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginTop="8dp"
|
|
android:background="?attr/divider_color_basic" />
|
|
|
|
</LinearLayout> |