changed icons for zooming in/out
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
BIN
android/res/drawable-hdpi/ic_zoom_in.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
android/res/drawable-hdpi/ic_zoom_in_disabled.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
android/res/drawable-hdpi/ic_zoom_in_highlighted.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
android/res/drawable-hdpi/ic_zoom_out.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
android/res/drawable-hdpi/ic_zoom_out_disabled.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
android/res/drawable-hdpi/ic_zoom_out_highlighted.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 620 B |
Before Width: | Height: | Size: 624 B |
Before Width: | Height: | Size: 720 B |
Before Width: | Height: | Size: 730 B |
BIN
android/res/drawable-ldpi/ic_zoom_in.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
android/res/drawable-ldpi/ic_zoom_in_disabled.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
android/res/drawable-ldpi/ic_zoom_in_highlighted.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
android/res/drawable-ldpi/ic_zoom_out.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
android/res/drawable-ldpi/ic_zoom_out_disabled.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
android/res/drawable-ldpi/ic_zoom_out_highlighted.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 875 B |
Before Width: | Height: | Size: 880 B |
Before Width: | Height: | Size: 998 B |
Before Width: | Height: | Size: 998 B |
BIN
android/res/drawable-mdpi/ic_zoom_in.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
android/res/drawable-mdpi/ic_zoom_in_disabled.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
android/res/drawable-mdpi/ic_zoom_in_highlighted.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
android/res/drawable-mdpi/ic_zoom_out.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
android/res/drawable-mdpi/ic_zoom_out_disabled.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
android/res/drawable-mdpi/ic_zoom_out_highlighted.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.9 KiB |
BIN
android/res/drawable-xhdpi/ic_zoom_in.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
android/res/drawable-xhdpi/ic_zoom_in_disabled.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
android/res/drawable-xhdpi/ic_zoom_in_highlighted.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
android/res/drawable-xhdpi/ic_zoom_out.png
Normal file
After Width: | Height: | Size: 4 KiB |
BIN
android/res/drawable-xhdpi/ic_zoom_out_disabled.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
android/res/drawable-xhdpi/ic_zoom_out_highlighted.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<item android:state_pressed="true"
|
||||
android:drawable="@drawable/ic_minus_highlighted" />
|
||||
<item android:drawable="@drawable/ic_minus" />
|
||||
</selector>
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<item android:state_pressed="true"
|
||||
android:drawable="@drawable/ic_plus_highlighted" />
|
||||
<item android:drawable="@drawable/ic_plus" />
|
||||
</selector>
|
6
android/res/drawable/zoom_in_button.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<item android:state_selected="true"
|
||||
android:drawable="@drawable/ic_zoom_in_highlighted" />
|
||||
<item android:drawable="@drawable/ic_zoom_in" />
|
||||
</selector>
|
6
android/res/drawable/zoom_out_button.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<item android:state_selected="true"
|
||||
android:drawable="@drawable/ic_zoom_out_highlighted" />
|
||||
<item android:drawable="@drawable/ic_zoom_out" />
|
||||
</selector>
|
|
@ -17,7 +17,7 @@
|
|||
android:id="@+id/map_button_plus"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/plus_button"
|
||||
android:background="@drawable/zoom_in_button"
|
||||
android:onClick="onPlusClicked"
|
||||
android:layout_marginTop="10dip"
|
||||
android:layout_marginBottom="5dip"
|
||||
|
@ -28,7 +28,7 @@
|
|||
android:id="@+id/map_button_minus"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/minus_button"
|
||||
android:background="@drawable/zoom_out_button"
|
||||
android:onClick="onMinusClicked"
|
||||
android:layout_marginTop="5dip"
|
||||
android:layout_marginLeft="5dip"
|
||||
|
|