2016-12-29 15:21:04 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-13 13:34:36 +02:00
|
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
2016-12-29 15:21:04 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
2016-12-29 15:51:15 +01:00
|
|
|
android:id="@+id/text"
|
2016-12-29 15:21:04 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/bg_color"
|
|
|
|
android:padding="16dp"
|
2017-01-08 10:05:32 +01:00
|
|
|
android:text="@string/quick_action_showhide_favorites_descr"
|
2016-12-29 15:21:04 +01:00
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/default_list_text_size" />
|
|
|
|
|
2020-05-15 09:58:37 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2016-12-29 15:21:04 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="top"
|
|
|
|
android:scaleType="fitXY"
|
2020-05-13 13:34:36 +02:00
|
|
|
osmand:srcCompat="@drawable/bg_shadow_list_bottom" />
|
2016-12-29 15:21:04 +01:00
|
|
|
</LinearLayout>
|