[android][bookmarks] New bookmarks icons added.

This commit is contained in:
Daria Volvenkova 2019-12-04 14:38:06 +03:00 committed by Arsentiy Milchakov
parent cf5da02ce1
commit 5abf3a9afb
36 changed files with 20 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 678 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 661 B

After

Width:  |  Height:  |  Size: 602 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 678 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 476 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 439 B

After

Width:  |  Height:  |  Size: 420 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 239 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 301 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 439 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 842 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 861 B

After

Width:  |  Height:  |  Size: 791 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 899 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 597 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 861 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 567 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 571 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 873 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 843 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 811 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -103,7 +103,13 @@ public class Icon implements Parcelable
BOOKMARK_ICON_TYPE_SHOP,
BOOKMARK_ICON_TYPE_SIGHTS,
BOOKMARK_ICON_TYPE_SWIM,
BOOKMARK_ICON_TYPE_WATER })
BOOKMARK_ICON_TYPE_WATER,
BOOKMARK_ICON_TYPE_BAR,
BOOKMARK_ICON_TYPE_TRANSPORT,
BOOKMARK_ICON_TYPE_VIEWPOINT,
BOOKMARK_ICON_TYPE_SPORT,
BOOKMARK_ICON_TYPE_START,
BOOKMARK_ICON_TYPE_FINISH })
@interface BookmarkIconType {}
static final int BOOKMARK_ICON_TYPE_NONE = 0;
@ -127,6 +133,12 @@ public class Icon implements Parcelable
static final int BOOKMARK_ICON_TYPE_SIGHTS = 18;
static final int BOOKMARK_ICON_TYPE_SWIM = 19;
static final int BOOKMARK_ICON_TYPE_WATER = 20;
static final int BOOKMARK_ICON_TYPE_BAR = 21;
static final int BOOKMARK_ICON_TYPE_TRANSPORT = 22;
static final int BOOKMARK_ICON_TYPE_VIEWPOINT = 23;
static final int BOOKMARK_ICON_TYPE_SPORT = 24;
static final int BOOKMARK_ICON_TYPE_START = 25;
static final int BOOKMARK_ICON_TYPE_FINISH = 26;
@DrawableRes
private static final int[] TYPE_ICONS = { R.drawable.ic_bookmark_none,
@ -149,7 +161,13 @@ public class Icon implements Parcelable
R.drawable.ic_bookmark_shop,
R.drawable.ic_bookmark_sights,
R.drawable.ic_bookmark_swim,
R.drawable.ic_bookmark_water };
R.drawable.ic_bookmark_water,
R.drawable.ic_bookmark_bar,
R.drawable.ic_bookmark_transport,
R.drawable.ic_bookmark_viewpoint,
R.drawable.ic_bookmark_sport,
R.drawable.ic_bookmark_start,
R.drawable.ic_bookmark_finish };
@PredefinedColor
private final int mColor;