Fix for Android 1.5 devices
BIN
res/drawable/arrow.png
Normal file
After Width: | Height: | Size: 554 B |
BIN
res/drawable/button_normal.9.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
res/drawable/button_pressed.9.png
Normal file
After Width: | Height: | Size: 578 B |
BIN
res/drawable/compass_background.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
res/drawable/compass_needle.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
res/drawable/copy.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
res/drawable/droid.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
res/drawable/gps.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
4
res/drawable/gps_fix.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<level-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:maxLevel="0" android:drawable="@drawable/gps_fix1"/>
|
||||
</level-list>
|
BIN
res/drawable/gps_fix1.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
res/drawable/icon.png
Normal file
After Width: | Height: | Size: 5 KiB |
BIN
res/drawable/icon_call.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
res/drawable/icon_car.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
res/drawable/icon_details.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
7
res/drawable/network_fix.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<level-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:maxLevel="0" android:drawable="@drawable/network_fix1"/>
|
||||
<item android:maxLevel="1" android:drawable="@drawable/network_fix2"/>
|
||||
<item android:maxLevel="2" android:drawable="@drawable/network_fix3"/>
|
||||
<item android:maxLevel="3" android:drawable="@drawable/network_fix2"/>
|
||||
</level-list>
|
BIN
res/drawable/network_fix1.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
res/drawable/network_fix2.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
res/drawable/network_fix3.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
res/drawable/pin_off.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
res/drawable/pin_on.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
res/drawable/refresh.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
res/drawable/status_off.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
res/drawable/status_on.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
|
@ -104,8 +104,9 @@ public class GeoUtils {
|
|||
}
|
||||
|
||||
String result = "";
|
||||
for (int i = 0; i <= addresses.get(0).getMaxAddressLineIndex(); i++)
|
||||
result += addresses.get(0).getAddressLine(i) + ", ";
|
||||
if (addresses != null && addresses.size() > 0)
|
||||
for (int i = 0; i <= addresses.get(0).getMaxAddressLineIndex(); i++)
|
||||
result += addresses.get(0).getAddressLine(i) + ", ";
|
||||
|
||||
if (result.equals(""))
|
||||
b.putString("location", context.getString(R.string.not_available));
|
||||
|
|