forked from organicmaps/organicmaps-tmp
[android] Changed maplayers dialog items order, strings
This commit is contained in:
parent
d033114cb7
commit
0f8ec4ee7d
3 changed files with 4 additions and 4 deletions
|
@ -87,7 +87,7 @@ public abstract class BottomSheetItem
|
|||
{
|
||||
private Isolines(int drawableResId, int disabledStateDrawableResId)
|
||||
{
|
||||
super(drawableResId, disabledStateDrawableResId, R.string.button_layer_traffic, Mode.ISOLINES);
|
||||
super(drawableResId, disabledStateDrawableResId, R.string.button_layer_isolines, Mode.ISOLINES);
|
||||
}
|
||||
|
||||
public static BottomSheetItem makeInstance(@NonNull Context mContext)
|
||||
|
|
|
@ -96,7 +96,7 @@ public class ToggleMapLayerDialog extends DialogFragment
|
|||
Pair<BottomSheetItem, OnItemClickListener<BottomSheetItem>> isoLines
|
||||
= new Pair<>(BottomSheetItem.Isolines.makeInstance(getContext()), isoLinesListener);
|
||||
|
||||
return Arrays.asList(traffic, subway, isoLines);
|
||||
return Arrays.asList(traffic, isoLines, subway);
|
||||
}
|
||||
|
||||
public static void show(@NonNull AppCompatActivity activity)
|
||||
|
|
|
@ -74,8 +74,8 @@ public enum Tutorial
|
|||
},
|
||||
|
||||
ISOLINES(R.string.tips_map_layers_title_countour,
|
||||
R.string.tips_map_layers_message_countour,
|
||||
R.id.isolines, null, MwmActivity.class)
|
||||
R.string.tips_map_layers_message_countour,
|
||||
R.id.isolines, null, MwmActivity.class)
|
||||
{
|
||||
|
||||
@NonNull
|
||||
|
|
Loading…
Add table
Reference in a new issue