26 lines
793 B
XML
26 lines
793 B
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginRight="10dip">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_scale"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right"
|
|
android:paddingBottom="10dp"
|
|
android:paddingRight="10dp"
|
|
android:textColor="#81868A"
|
|
android:textSize="20sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_scale_bg"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/mapscale"
|
|
android:gravity="center" />
|
|
|
|
|
|
</RelativeLayout> |