summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/view_text_marker.xml
blob: 1ef2c6901223b09de4164533a872810065c4cfab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@color/mapboxGreen">

    <TextView
        android:id="@id/textView"
        android:layout_width="wrap_content"
        android:textColor="@android:color/white"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:padding="4dp"
        android:textIsSelectable="false"
        android:layout_centerInParent="true" />

</RelativeLayout>