2015-10-24 18:02:34 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-10-24 19:56:28 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/main_view"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2017-12-20 11:39:51 +01:00
|
|
|
tools:background="?attr/bottom_menu_view_bg"
|
|
|
|
android:orientation="vertical"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2015-10-24 18:02:34 +02:00
|
|
|
|
2017-12-20 11:39:51 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/content"
|
|
|
|
android:orientation="vertical"
|
2015-10-24 18:02:34 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-12-20 11:39:51 +01:00
|
|
|
android:layout_height="wrap_content">
|
2015-10-24 18:02:34 +02:00
|
|
|
|
2017-12-20 11:39:51 +01:00
|
|
|
<ListView
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingBottom="@dimen/bottom_sheet_content_padding_small"
|
|
|
|
android:id="@+id/list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:divider="@null"
|
|
|
|
android:dividerHeight="0dp"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/cancel_row"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/bottom_sheet_cancel_button_height"
|
|
|
|
android:background="?attr/selectableItemBackground">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/cancel_row_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/shared_string_close"
|
|
|
|
android:textAllCaps="true"
|
|
|
|
android:textColor="?attr/color_dialog_buttons"
|
|
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
|
|
android:textStyle="bold"/>
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2015-10-24 18:02:34 +02:00
|
|
|
|
2015-10-24 19:56:28 +02:00
|
|
|
</LinearLayout>
|