Added new bookmark type on Android
BIN
android/res/drawable-hdpi/ic_bookmark_marker_hotel_off.png
Normal file
After Width: | Height: | Size: 680 B |
BIN
android/res/drawable-hdpi/ic_bookmark_marker_hotel_on.png
Normal file
After Width: | Height: | Size: 749 B |
BIN
android/res/drawable-mdpi/ic_bookmark_marker_hotel_off.png
Normal file
After Width: | Height: | Size: 473 B |
BIN
android/res/drawable-mdpi/ic_bookmark_marker_hotel_on.png
Normal file
After Width: | Height: | Size: 479 B |
BIN
android/res/drawable-xhdpi/ic_bookmark_marker_hotel_off.png
Normal file
After Width: | Height: | Size: 880 B |
BIN
android/res/drawable-xhdpi/ic_bookmark_marker_hotel_on.png
Normal file
After Width: | Height: | Size: 920 B |
BIN
android/res/drawable-xxhdpi/ic_bookmark_marker_hotel_off.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
android/res/drawable-xxhdpi/ic_bookmark_marker_hotel_on.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
|
@ -5,4 +5,4 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/margin_half"
|
||||
android:gravity="center"
|
||||
android:numColumns="4"/>
|
||||
android:numColumns="3"/>
|
||||
|
|
|
@ -25,6 +25,7 @@ public enum BookmarkManager
|
|||
ICONS.add(new Icon("placemark-brown", "placemark-brown", R.drawable.ic_bookmark_marker_brown_off, R.drawable.ic_bookmark_marker_brown_on));
|
||||
ICONS.add(new Icon("placemark-green", "placemark-green", R.drawable.ic_bookmark_marker_green_off, R.drawable.ic_bookmark_marker_green_on));
|
||||
ICONS.add(new Icon("placemark-orange", "placemark-orange", R.drawable.ic_bookmark_marker_orange_off, R.drawable.ic_bookmark_marker_orange_on));
|
||||
ICONS.add(new Icon("placemark-hotel", "placemark-hotel", R.drawable.ic_bookmark_marker_hotel_off, R.drawable.ic_bookmark_marker_hotel_on));
|
||||
}
|
||||
|
||||
public static Icon getIconByType(String type)
|
||||
|
|