Fixed various lint issues

Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
2012-06-02 17:05:34 -04:00
parent b211c3d829
commit 4f1ff722ae
5 changed files with 47 additions and 50 deletions

View File

@@ -1,40 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff">
<ImageView
android:id="@+id/skyhook_img"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_margin="20dip"
android:src="@drawable/skyhook_logo_alpha_small"
/>
<TextView
android:text="Powered By:"
android:textColor="#000000"
android:textStyle="bold"
android:textSize="20dip"
android:layout_above="@id/skyhook_img"
android:layout_marginLeft="10dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/text"
/>
<ImageView
android:id="@+id/tc_img"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:src="@drawable/logoidea3"
android:layout_above="@id/text"
/>
android:layout_height="fill_parent"
android:background="#ffffff"
tools:ignore="ContentDescription" >
<ImageView
android:id="@+id/skyhook_img"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_margin="20dip"
android:src="@drawable/skyhook_logo_alpha_small" />
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@id/skyhook_img"
android:layout_marginLeft="10dip"
android:text="@string/powered_by"
android:textColor="#000000"
android:textSize="20dip"
android:textStyle="bold" />
<ImageView
android:id="@+id/tc_img"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/text"
android:layout_alignParentTop="true"
android:src="@drawable/logoidea3" />
</RelativeLayout>

View File

@@ -1,6 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">SkyHookLib</string>
<string name="gps_fix">GPS Fix</string>
<string name="sorry_theres_trouble">We are having issues finding your location. Please be patient as we continue to try in the background.</string>
</resources>
<string name="powered_by">Powered By:</string>
</resources>