init commit
BIN
LocationLib/res/drawable/compass.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
LocationLib/res/drawable/logoidea3.png
Normal file
|
After Width: | Height: | Size: 136 KiB |
BIN
LocationLib/res/drawable/needle.png
Normal file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
LocationLib/res/drawable/skyhook_logo.jpg
Normal file
|
After Width: | Height: | Size: 43 KiB |
BIN
LocationLib/res/drawable/skyhook_logo_alpha.png
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
LocationLib/res/drawable/skyhook_logo_alpha_small.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
LocationLib/res/drawable/tc_logo_complete.png
Normal file
|
After Width: | Height: | Size: 53 KiB |
BIN
LocationLib/res/drawable/user.png
Normal file
|
After Width: | Height: | Size: 759 B |
BIN
LocationLib/res/drawable/user_arrow_animation_1.png
Normal file
|
After Width: | Height: | Size: 739 B |
BIN
LocationLib/res/drawable/user_arrow_animation_2.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
LocationLib/res/drawable/user_arrow_animation_3.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
13
LocationLib/res/drawable/userarrow.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:oneshot="false" >
|
||||
<item
|
||||
android:drawable="@drawable/user_arrow_animation_1"
|
||||
android:duration="500" />
|
||||
<item
|
||||
android:drawable="@drawable/user_arrow_animation_2"
|
||||
android:duration="200" />
|
||||
<item
|
||||
android:drawable="@drawable/user_arrow_animation_3"
|
||||
android:duration="200" />
|
||||
</animation-list>
|
||||
40
LocationLib/res/layout/powered_by_skyhook.xml
Normal file
@@ -0,0 +1,40 @@
|
||||
<?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"
|
||||
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"
|
||||
/>
|
||||
|
||||
</RelativeLayout>
|
||||
6
LocationLib/res/values/strings.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?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>
|
||||