OsmAnd/OsmAnd/res/layout/measure_track_is_saved.xml
2020-08-27 17:51:35 +03:00

40 lines
No EOL
1.6 KiB
XML

<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/measure_point_reorder_icon"
android:layout_width="@dimen/measurement_tool_button_height"
android:layout_height="@dimen/measurement_tool_button_height"
android:layout_marginTop="@dimen/content_padding"
android:layout_marginBottom="@dimen/content_padding_small"
android:layout_gravity="center"
android:scaleType="fitCenter"
android:tint="?attr/active_color_basic"
osmand:srcCompat="@drawable/ic_action_save_complete" />
<net.osmand.plus.widgets.TextViewEx
android:id="@+id/file_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="@dimen/text_margin_small"
android:textColor="?attr/active_color_basic"
android:textSize="@dimen/default_list_text_size"
osmand:typeface="@string/font_roboto_medium"
tools:text="Sun 27 Aug 2020" />
<net.osmand.plus.widgets.TextViewEx
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textColor="?android:textColorPrimary"
android:textSize="@dimen/default_list_text_size"
osmand:typeface="@string/font_roboto_medium"
android:text="@string/shared_string_is_saved" />
</LinearLayout>