Add two icons for app profiles: Pickup truck and Wagon
BIN
OsmAnd/res/drawable-hdpi/ic_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 403 B |
BIN
OsmAnd/res/drawable-hdpi/ic_action_wagon.png
Executable file
After Width: | Height: | Size: 508 B |
BIN
OsmAnd/res/drawable-hdpi/map_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 403 B |
BIN
OsmAnd/res/drawable-hdpi/map_action_wagon.png
Executable file
After Width: | Height: | Size: 508 B |
BIN
OsmAnd/res/drawable-large-hdpi/map_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 503 B |
BIN
OsmAnd/res/drawable-large-hdpi/map_action_wagon.png
Executable file
After Width: | Height: | Size: 573 B |
BIN
OsmAnd/res/drawable-large-xhdpi/map_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 722 B |
BIN
OsmAnd/res/drawable-large-xhdpi/map_action_wagon.png
Executable file
After Width: | Height: | Size: 803 B |
BIN
OsmAnd/res/drawable-large/map_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 403 B |
BIN
OsmAnd/res/drawable-large/map_action_wagon.png
Executable file
After Width: | Height: | Size: 508 B |
BIN
OsmAnd/res/drawable-mdpi/ic_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 249 B |
BIN
OsmAnd/res/drawable-mdpi/ic_action_wagon.png
Executable file
After Width: | Height: | Size: 302 B |
BIN
OsmAnd/res/drawable-mdpi/map_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 249 B |
BIN
OsmAnd/res/drawable-mdpi/map_action_wagon.png
Executable file
After Width: | Height: | Size: 302 B |
BIN
OsmAnd/res/drawable-xhdpi/ic_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 503 B |
BIN
OsmAnd/res/drawable-xhdpi/ic_action_wagon.png
Executable file
After Width: | Height: | Size: 573 B |
BIN
OsmAnd/res/drawable-xhdpi/map_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 503 B |
BIN
OsmAnd/res/drawable-xhdpi/map_action_wagon.png
Executable file
After Width: | Height: | Size: 573 B |
BIN
OsmAnd/res/drawable-xxhdpi/ic_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 722 B |
BIN
OsmAnd/res/drawable-xxhdpi/ic_action_wagon.png
Executable file
After Width: | Height: | Size: 803 B |
BIN
OsmAnd/res/drawable-xxhdpi/map_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 722 B |
BIN
OsmAnd/res/drawable-xxhdpi/map_action_wagon.png
Executable file
After Width: | Height: | Size: 803 B |
BIN
OsmAnd/res/drawable-xxxhdpi/ic_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 969 B |
BIN
OsmAnd/res/drawable-xxxhdpi/ic_action_wagon.png
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
OsmAnd/res/drawable-xxxhdpi/map_action_pickup_truck.png
Executable file
After Width: | Height: | Size: 969 B |
BIN
OsmAnd/res/drawable-xxxhdpi/map_action_wagon.png
Executable file
After Width: | Height: | Size: 1.1 KiB |
|
@ -11,6 +11,8 @@
|
|||
Thx - Hardy
|
||||
|
||||
-->
|
||||
<string name="app_mode_wagon">Wagon</string>
|
||||
<string name="app_mode_pickup_truck">Pickup truck</string>
|
||||
<string name="shared_string_default">Default</string>
|
||||
<string name="gpx_join_gaps">Join gaps</string>
|
||||
<string name="app_mode_camper">Camper</string>
|
||||
|
|
|
@ -258,6 +258,8 @@ public class SelectProfileBottomSheetDialogFragment extends MenuBottomSheetDialo
|
|||
icons.add(new IconResWithDescr(R.drawable.ic_action_offroad, R.string.app_mode_offroad, "ic_action_offroad", false));
|
||||
icons.add(new IconResWithDescr(R.drawable.ic_action_campervan, R.string.app_mode_campervan, "ic_action_campervan", false));
|
||||
icons.add(new IconResWithDescr(R.drawable.ic_action_camper, R.string.app_mode_camper, "ic_action_camper", false));
|
||||
icons.add(new IconResWithDescr(R.drawable.ic_action_pickup_truck, R.app_mode_pickup_truck, "ic_action_pickup_truck", false));
|
||||
icons.add(new IconResWithDescr(R.drawable.ic_action_wagon, R.app_mode_wagon, "ic_action_wagon", false));
|
||||
return icons;
|
||||
}
|
||||
|
||||
|
|