and fixed some lint issues Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
93 lines
3.3 KiB
XML
93 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/distance_background"
|
|
android:orientation="horizontal" >
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="10dip"
|
|
android:layout_marginTop="10dip"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical" >
|
|
|
|
<ImageButton
|
|
android:id="@+id/my_location"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:background="@drawable/my_location_action_bar"
|
|
android:contentDescription="@string/my_location" />
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="10dip"
|
|
android:layout_marginTop="10dip"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical" >
|
|
|
|
<ImageButton
|
|
android:id="@+id/mark_my_location"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:background="@drawable/mark_my_location_action_bar"
|
|
android:contentDescription="@string/mark_car" />
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="10dip"
|
|
android:layout_marginTop="10dip"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical" >
|
|
|
|
<ImageButton
|
|
android:id="@+id/show_both"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:layout_gravity="center"
|
|
android:background="@drawable/car_action_bar" />
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="10dip"
|
|
android:layout_marginTop="10dip"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical" >
|
|
|
|
<ImageButton
|
|
android:id="@+id/parking_timer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:background="@drawable/time_action_bar"
|
|
android:contentDescription="@string/parking_timer" />
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="10dip"
|
|
android:layout_marginTop="10dip"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical" >
|
|
|
|
<ImageButton
|
|
android:id="@+id/directions"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:background="@drawable/nav_action_bar"
|
|
android:contentDescription="@string/directions" />
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |