Add edit/delete icons

This commit is contained in:
Victor Shcherb 2013-04-13 12:43:56 +02:00
parent 8eee8e7618
commit c70ddbcbd7
7 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 B

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 B

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 B

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 B

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -592,7 +592,7 @@ public class FavouritesActivity extends OsmandExpandableListActivity {
final FavouritePoint model = (FavouritePoint) getChild(groupPosition, childPosition);
row.setTag(model);
if(model.isStored()){
icon.setImageResource(R.drawable.favorites);
icon.setImageResource(R.drawable.list_activities_favorites);
} else {
icon.setImageResource(R.drawable.opened_poi);
}

View file

@ -163,7 +163,7 @@ public class FavouritesListActivity extends ListActivity implements SearchActivi
ImageView icon = (ImageView) row.findViewById(R.id.favourite_icon);
final FavouritePoint model = getItem(position);
if (model.isStored()) {
icon.setImageResource(R.drawable.favorites);
icon.setImageResource(R.drawable.list_activities_favorites);
} else {
icon.setImageResource(R.drawable.opened_poi);
}