and fixed some lint issues Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
27 lines
881 B
XML
27 lines
881 B
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" >
|
|
|
|
<TextView
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="2"
|
|
android:gravity="left"
|
|
android:text="@string/distance"
|
|
android:textColor="#000000"
|
|
android:textSize="22sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvDistance"
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="3dip"
|
|
android:layout_weight="1"
|
|
android:gravity="right"
|
|
android:textColor="#000000"
|
|
android:textSize="26sp" />
|
|
|
|
</LinearLayout> |