1
0
Fork 0

Fix for Android 1.5 devices

master
Carlos Mogas da Silva 14 years ago
parent cef1b4d481
commit 23dcbd605a
  1. BIN
      res/drawable/arrow.png
  2. BIN
      res/drawable/button_normal.9.png
  3. BIN
      res/drawable/button_pressed.9.png
  4. BIN
      res/drawable/compass_background.png
  5. BIN
      res/drawable/compass_needle.png
  6. BIN
      res/drawable/copy.png
  7. BIN
      res/drawable/droid.png
  8. BIN
      res/drawable/gps.png
  9. 4
      res/drawable/gps_fix.xml
  10. BIN
      res/drawable/gps_fix1.png
  11. BIN
      res/drawable/icon.png
  12. BIN
      res/drawable/icon_call.png
  13. BIN
      res/drawable/icon_car.png
  14. BIN
      res/drawable/icon_details.png
  15. 7
      res/drawable/network_fix.xml
  16. BIN
      res/drawable/network_fix1.png
  17. BIN
      res/drawable/network_fix2.png
  18. BIN
      res/drawable/network_fix3.png
  19. BIN
      res/drawable/pin_off.png
  20. BIN
      res/drawable/pin_on.png
  21. BIN
      res/drawable/refresh.png
  22. BIN
      res/drawable/status_off.png
  23. BIN
      res/drawable/status_on.png
  24. 5
      src/org/r3pek/pharmacies/utils/GeoUtils.java

Binary file not shown.

After

Width:  |  Height:  |  Size: 554 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 578 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@ -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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

@ -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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

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));

Loading…
Cancel
Save