OsmAnd/OsmAnd/res/layout/quick_action_add_dialog.xml

41 lines
1.5 KiB
XML
Raw Normal View History

2016-12-22 16:43:47 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/bg_color"
2016-12-22 16:43:47 +01:00
android:paddingTop="24dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/dialog_add_action_title"
2016-12-23 14:35:37 +01:00
android:layout_marginLeft="24dp"
2016-12-22 16:43:47 +01:00
android:layout_marginRight="24dp"
android:textSize="@dimen/dialog_header_text_size"
android:textColor="?android:textColorPrimary"
2017-01-03 12:10:31 +01:00
android:layout_marginBottom="8dp"/>
2016-12-22 16:43:47 +01:00
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_weight="1"
app:layoutManager="LinearLayoutManager"
android:layout_width="match_parent"
2017-01-04 09:53:30 +01:00
android:scrollbars="vertical"
2016-12-22 16:43:47 +01:00
android:layout_height="wrap_content"/>
<Button
android:id="@+id/btnDismiss"
2016-12-23 14:35:37 +01:00
android:layout_marginTop="8dp"
2016-12-22 16:43:47 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
android:text="@string/btn_dismiss"
android:layout_gravity="right"
2016-12-23 14:35:37 +01:00
android:background="?android:selectableItemBackground"
2016-12-22 16:43:47 +01:00
android:textColor="@color/dashboard_blue"
android:textAllCaps="true"/>
</LinearLayout>