Welcome to mirror list, hosted at ThFree Co, Russian Federation.

place_page_latlon.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afe42a30b2c3863e63da206d238fc8092d749c89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:id="@+id/ll__place_latlon"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?attr/clickableBackground"
    android:gravity="center_vertical"
    android:orientation="horizontal"
    android:paddingBottom="@dimen/margin_small"
    android:paddingTop="@dimen/margin_small"
    android:tag="latlon">

  <ImageView
      android:id="@+id/iv__place_latlon"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginRight="@dimen/margin_large"
      android:src="@drawable/ic_text_position"/>

  <TextView
      android:id="@+id/tv__place_latlon"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:textColor="@color/text_place_page"
      android:textSize="@dimen/place_page_subtitle"/>
</LinearLayout>