Files
findmycar/FindMyCarLib/res/layout/map.xml

43 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<include
android:id="@+id/distancebar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
layout="@layout/distancebar" >
</include>
<fragment
android:id="@+id/map_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/buttons"
android:layout_below="@id/distancebar"
class="com.TwentyCodes.android.fragments.UserOverlayMapFragment" >
</fragment>
<TextView
android:id="@+id/tvAccuracy"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/distancebar"
android:layout_marginRight="10dip"
android:layout_marginTop="10dip"
android:enabled="false"
android:textColor="#F00000"
android:textSize="26dip"
android:textStyle="bold" />
<include
android:id="@id/buttons"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
layout="@layout/map_buttons" />
</RelativeLayout>