Files
comaps/android/app/src/main/res/layout/place_page_placename.xml
Konstantin Pastbin e3e4a1985a Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
2025-05-08 21:10:51 +07:00

42 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/ll__place_name"
style="@style/PlacePageItemFrame"
android:layout_width="match_parent"
android:layout_height="72dp"
tools:background="#2000FF00"
tools:visibility="visible">
<ImageView
android:id="@+id/iv__place_name"
style="@style/PlacePageMetadataIcon"
android:layout_centerVertical="true"
app:srcCompat="@drawable/ic_address"/>
<Space
android:id="@+id/anchor_center"
android:layout_width="0dp"
android:layout_height="4dp"
android:layout_centerVertical="true"/>
<TextView
android:id="@+id/tv__place_address"
style="@style/PlacePageMetadataText"
android:textAlignment="viewStart"
android:layout_above="@id/anchor_center"
android:layout_toEndOf="@id/iv__place_name"
tools:text="Sample place"/>
<TextView
android:id="@+id/tv__place_post_address"
android:textAlignment="viewStart"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignStart="@id/tv__place_address"
android:layout_below="@id/anchor_center"
android:textAppearance="@style/MwmTextAppearance.Body3"
tools:text="Post address"/>
</RelativeLayout>