OsmAnd/OsmAnd/res/layout/quick_action_add_dialog_item.xml

39 lines
1.6 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:osmand="http://schemas.android.com/apk/res-auto"
2016-12-22 16:43:47 +01:00
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/searchListItemLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="@dimen/bottom_sheet_list_item_height"
android:paddingLeft="@dimen/content_padding"
android:paddingRight="@dimen/content_padding"
android:background="?attr/selectableItemBackground"
android:orientation="horizontal">
2016-12-22 16:43:47 +01:00
2020-05-15 09:58:37 +02:00
<androidx.appcompat.widget.AppCompatImageView
2016-12-22 16:43:47 +01:00
android:id="@+id/image"
android:layout_width="@dimen/standard_icon_size"
android:layout_height="@dimen/standard_icon_size"
2016-12-22 16:43:47 +01:00
android:layout_gravity="center_vertical"
android:layout_marginRight="@dimen/content_padding"
2020-06-11 09:48:01 +02:00
android:layout_marginEnd="@dimen/content_padding"
2016-12-22 16:43:47 +01:00
android:scaleType="centerInside"
2019-07-04 18:58:10 +02:00
android:tint="?attr/default_icon_color"
2020-06-09 09:20:39 +02:00
osmand:srcCompat="@drawable/ic_action_flag" />
2016-12-22 16:43:47 +01:00
<net.osmand.plus.widgets.TextViewEx
2016-12-22 16:43:47 +01:00
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
2020-06-11 09:48:01 +02:00
android:layout_marginLeft="@dimen/content_padding"
android:layout_marginStart="@dimen/content_padding"
2016-12-22 16:43:47 +01:00
android:textColor="?android:textColorPrimary"
android:textSize="@dimen/default_list_text_size"
osmand:typeface="@string/font_roboto_regular"
2016-12-22 16:43:47 +01:00
tools:text="Add marker" />
</LinearLayout>