prepare icon consistency in ActionBar
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 1.7 KiB |
BIN
OsmAnd/res/drawable-hdpi/list_activities_favorites_old.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 866 B After Width: | Height: | Size: 1.4 KiB |
BIN
OsmAnd/res/drawable-hdpi/list_activities_navigate_to_old.png
Normal file
After Width: | Height: | Size: 866 B |
Before Width: | Height: | Size: 866 B After Width: | Height: | Size: 838 B |
BIN
OsmAnd/res/drawable-hdpi/list_activities_set_destination_old.png
Normal file
After Width: | Height: | Size: 866 B |
Before Width: | Height: | Size: 955 B After Width: | Height: | Size: 1.6 KiB |
BIN
OsmAnd/res/drawable-hdpi/list_activities_set_intermediateold.png
Normal file
After Width: | Height: | Size: 955 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.5 KiB |
BIN
OsmAnd/res/drawable-hdpi/list_activities_show_on_map_old.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
OsmAnd/res/drawable-hdpi/list_destination.png
Normal file
After Width: | Height: | Size: 866 B |
BIN
OsmAnd/res/drawable-hdpi/list_intermediate.png
Normal file
After Width: | Height: | Size: 955 B |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 1.7 KiB |
BIN
OsmAnd/res/drawable-large/list_activities_favorites_old.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 866 B After Width: | Height: | Size: 1.4 KiB |
BIN
OsmAnd/res/drawable-large/list_activities_navigate_to_old.png
Normal file
After Width: | Height: | Size: 866 B |
Before Width: | Height: | Size: 866 B After Width: | Height: | Size: 838 B |
After Width: | Height: | Size: 866 B |
Before Width: | Height: | Size: 955 B After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 955 B |
BIN
OsmAnd/res/drawable-large/list_activities_show_on_map.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
OsmAnd/res/drawable-large/list_destination.png
Normal file
After Width: | Height: | Size: 866 B |
BIN
OsmAnd/res/drawable-large/list_intermediate.png
Normal file
After Width: | Height: | Size: 955 B |
|
@ -243,8 +243,8 @@ public class IntermediatePointsDialog {
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
tv.setCompoundDrawablesWithIntrinsicBounds(
|
tv.setCompoundDrawablesWithIntrinsicBounds(
|
||||||
position == intermediates.size() - 1? R.drawable.list_activities_set_destination:
|
position == intermediates.size() - 1? R.drawable.list_destination:
|
||||||
R.drawable.list_activities_set_intermediate, 0, 0, 0);
|
R.drawable.list_intermediate, 0, 0, 0);
|
||||||
tv.setCompoundDrawablePadding(padding);
|
tv.setCompoundDrawablePadding(padding);
|
||||||
final CheckBox ch = ((CheckBox) v.findViewById(R.id.check_item));
|
final CheckBox ch = ((CheckBox) v.findViewById(R.id.check_item));
|
||||||
ch.setVisibility(View.VISIBLE);
|
ch.setVisibility(View.VISIBLE);
|
||||||
|
|
|
@ -1256,7 +1256,7 @@ public class MapActivityActions implements DialogProvider {
|
||||||
});
|
});
|
||||||
qa.addActionItem(showOnMap);
|
qa.addActionItem(showOnMap);
|
||||||
ActionItem setAsDestination = new ActionItem();
|
ActionItem setAsDestination = new ActionItem();
|
||||||
setAsDestination.setIcon(activity.getResources().getDrawable(R.drawable.list_activities_set_destination));
|
setAsDestination.setIcon(activity.getResources().getDrawable(R.drawable.list_activities_navigate_to));
|
||||||
setAsDestination.setTitle(activity.getString(R.string.get_directions));
|
setAsDestination.setTitle(activity.getString(R.string.get_directions));
|
||||||
setAsDestination.setOnClickListener(new OnClickListener() {
|
setAsDestination.setOnClickListener(new OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
|
|