34 lines
No EOL
1.5 KiB
XML
34 lines
No EOL
1.5 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:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/bottom_sheet_title_height"
|
|
android:gravity="center_vertical"
|
|
android:paddingEnd="@dimen/content_padding"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingRight="@dimen/content_padding"
|
|
android:paddingStart="@dimen/content_padding"
|
|
tools:text="@string/gpx_track"
|
|
android:textAppearance="@style/TextAppearance.ListItemTitle"
|
|
osmand:typeface="@string/font_roboto_medium"/>
|
|
|
|
<TextView
|
|
android:id="@+id/description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/bottom_sheet_descr_height"
|
|
android:paddingEnd="@dimen/content_padding"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingRight="@dimen/content_padding"
|
|
android:paddingStart="@dimen/content_padding"
|
|
tools:text="@string/add_track_to_markers_descr"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="@dimen/default_desc_text_size"/>
|
|
|
|
</LinearLayout> |