Merge branch 'master' of ssh://github.com/osmandapp/Osmand
This commit is contained in:
commit
f755bfd687
3 changed files with 4 additions and 2 deletions
|
@ -1308,7 +1308,7 @@
|
||||||
<string name="local_indexes_cat_srtm">Данные горизонталей</string>
|
<string name="local_indexes_cat_srtm">Данные горизонталей</string>
|
||||||
<string name="downloading_file_new">Загрузка…</string>
|
<string name="downloading_file_new">Загрузка…</string>
|
||||||
<string name="osmand_distance_planning_plugin_description">Создание путей (или модификация существующего файла GPX) для измерения дистанции между точками. Сохранить как GPX (может использоваться для планирования маршрутов GPX).</string>
|
<string name="osmand_distance_planning_plugin_description">Создание путей (или модификация существующего файла GPX) для измерения дистанции между точками. Сохранить как GPX (может использоваться для планирования маршрутов GPX).</string>
|
||||||
<string name="context_menu_item_destination_point">Установить как пункт назначения</string>
|
<string name="context_menu_item_destination_point">Пункт назначения</string>
|
||||||
<string name="please_select_address">Сначала выберите город или улицу</string>
|
<string name="please_select_address">Сначала выберите город или улицу</string>
|
||||||
<string name="destination_point">Пункт назначения %1$s</string>
|
<string name="destination_point">Пункт назначения %1$s</string>
|
||||||
<string name="av_camera_focus">Режим фокусировки камеры</string>
|
<string name="av_camera_focus">Режим фокусировки камеры</string>
|
||||||
|
|
|
@ -178,13 +178,13 @@ public class GpxImportHelper {
|
||||||
favoritesHelper.addFavourite(favourite, false);
|
favoritesHelper.addFavourite(favourite, false);
|
||||||
}
|
}
|
||||||
favoritesHelper.saveCurrentPointsIntoFile();
|
favoritesHelper.saveCurrentPointsIntoFile();
|
||||||
AccessibleToast.makeText(mapActivity, R.string.fav_imported_sucessfully, Toast.LENGTH_LONG).show();
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void onPostExecute(GPXUtilities.GPXFile result) {
|
protected void onPostExecute(GPXUtilities.GPXFile result) {
|
||||||
progress.dismiss();
|
progress.dismiss();
|
||||||
|
AccessibleToast.makeText(mapActivity, R.string.fav_imported_sucessfully, Toast.LENGTH_LONG).show();
|
||||||
final Intent newIntent = new Intent(mapActivity, application.getAppCustomization().getFavoritesActivity());
|
final Intent newIntent = new Intent(mapActivity, application.getAppCustomization().getFavoritesActivity());
|
||||||
mapActivity.startActivity(newIntent);
|
mapActivity.startActivity(newIntent);
|
||||||
}
|
}
|
||||||
|
|
|
@ -687,6 +687,8 @@ public class MapInfoLayer extends OsmandMapLayer {
|
||||||
layout.addView(widget, fparams);
|
layout.addView(widget, fparams);
|
||||||
fparams = new FrameLayout.LayoutParams((int) (backToLoc.getMinimumWidth() ),
|
fparams = new FrameLayout.LayoutParams((int) (backToLoc.getMinimumWidth() ),
|
||||||
backToLoc.getMinimumHeight());
|
backToLoc.getMinimumHeight());
|
||||||
|
//this fix needed for android 2.3 because margin doesn't work without gravity
|
||||||
|
fparams.gravity = Gravity.TOP;
|
||||||
fparams.setMargins((int) (5 * scaleCoefficient), 0, 0, 0);
|
fparams.setMargins((int) (5 * scaleCoefficient), 0, 0, 0);
|
||||||
layout.addView(progressBar, fparams);
|
layout.addView(progressBar, fparams);
|
||||||
layout.setOnClickListener(new View.OnClickListener() {
|
layout.setOnClickListener(new View.OnClickListener() {
|
||||||
|
|
Loading…
Reference in a new issue