commit
2333dac823
61 changed files with 1028 additions and 263 deletions
|
@ -39,6 +39,11 @@ public class Amenity extends MapObject {
|
||||||
public static final String REF = "ref";
|
public static final String REF = "ref";
|
||||||
public static final String OSM_DELETE_VALUE = "delete";
|
public static final String OSM_DELETE_VALUE = "delete";
|
||||||
public static final String OSM_DELETE_TAG = "osmand_change";
|
public static final String OSM_DELETE_TAG = "osmand_change";
|
||||||
|
public static final String IMAGE_TITLE = "image_title";
|
||||||
|
public static final String IS_PART = "is_part";
|
||||||
|
public static final String IS_AGGR_PART = "is_aggr_part";
|
||||||
|
public static final String CONTENT_JSON = "content_json";
|
||||||
|
|
||||||
|
|
||||||
private String subType;
|
private String subType;
|
||||||
private PoiCategory type;
|
private PoiCategory type;
|
||||||
|
|
|
@ -17,6 +17,7 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
lintOptions {
|
lintOptions {
|
||||||
|
tasks.lint.enabled = false
|
||||||
abortOnError false
|
abortOnError false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,8 +43,6 @@ android {
|
||||||
res.srcDirs = ["res"]
|
res.srcDirs = ["res"]
|
||||||
assets.srcDirs = ["assets"]
|
assets.srcDirs = ["assets"]
|
||||||
}
|
}
|
||||||
debug {
|
|
||||||
}
|
|
||||||
|
|
||||||
legacy {
|
legacy {
|
||||||
jniLibs.srcDirs = ["libc++"]
|
jniLibs.srcDirs = ["libc++"]
|
||||||
|
@ -339,23 +338,74 @@ task appStart(type: Exec) {
|
||||||
// commandLine 'cmd', '/c', 'adb', 'shell', 'am', 'start', '-n', 'net.osmand.plus/net.osmand.plus.activities.MapActivity'
|
// commandLine 'cmd', '/c', 'adb', 'shell', 'am', 'start', '-n', 'net.osmand.plus/net.osmand.plus.activities.MapActivity'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
artifacts {
|
||||||
|
archives(file("../OsmAnd-java/build/libs/OsmAnd-java-android-1.0.jar")) {
|
||||||
|
classifier "OsmAnd-java-android"
|
||||||
|
name 'OsmAnd'
|
||||||
|
type "jar"
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-x86-debug.aar")) {
|
||||||
|
classifier 'legacyX86Debug'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-x86-release.aar")) {
|
||||||
|
classifier 'legacyX86Release'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-arm64-debug.aar")) {
|
||||||
|
classifier 'legacyArm64Debug'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-arm64-release.aar")) {
|
||||||
|
classifier 'legacyArm64Release'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-armonly-debug.aar")) {
|
||||||
|
classifier 'legacyArmonlyDebug'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-armonly-release.aar")) {
|
||||||
|
classifier 'legacyArmonlyRelease'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-armv7-debug.aar")) {
|
||||||
|
classifier 'legacyArmv7Debug'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-armv7-release.aar")) {
|
||||||
|
classifier 'legacyArmv7Release'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-fat-debug.aar")) {
|
||||||
|
classifier 'legacyFatDebug'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
archives(file("$buildDir/outputs/aar/OsmAnd-legacy-fat-release.aar")) {
|
||||||
|
classifier 'legacyFatRelease'
|
||||||
|
name 'OsmAnd'
|
||||||
|
extension 'aar'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Uploading artifacts to local path
|
// Uploading artifacts to local path
|
||||||
group = "net.osmand"
|
group = 'net.osmand'
|
||||||
uploadArchives {
|
uploadArchives {
|
||||||
repositories.ivy {
|
repositories.ivy {
|
||||||
// credentials {
|
// credentials {
|
||||||
// username ""
|
// username ""
|
||||||
// password ""
|
// password ""
|
||||||
// }
|
// }
|
||||||
url = System.getenv("OSMAND_BINARIES_IVY_ROOT") ?: "./"
|
|
||||||
layout "pattern" , {
|
|
||||||
artifact "[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"
|
|
||||||
}
|
|
||||||
|
|
||||||
// def gitInfo = "git describe --long".execute().text.trim()
|
url = System.getenv("OSMAND_BINARIES_IVY_ROOT") ?: "./"
|
||||||
// def parsedGitInfo = Pattern.compile("v(\\d+\\.\\d+)-([\\d.]+)-(\\w+)").matcher(gitInfo)
|
|
||||||
// assert parsedGitInfo.matches()
|
|
||||||
// version = parsedGitInfo.group(1) + "-SNAPSHOT"
|
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
10
OsmAnd/res/animator/appbar_always_elevated.xml
Normal file
10
OsmAnd/res/animator/appbar_always_elevated.xml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<item>
|
||||||
|
<objectAnimator
|
||||||
|
android:propertyName="elevation"
|
||||||
|
android:valueTo="@dimen/design_appbar_elevation"
|
||||||
|
android:valueType="floatType" />
|
||||||
|
</item>
|
||||||
|
</selector>
|
|
@ -33,7 +33,7 @@
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:maxLines="1"
|
android:maxLines="2"
|
||||||
android:textAppearance="@style/TextAppearance.ListItemTitle"
|
android:textAppearance="@style/TextAppearance.ListItemTitle"
|
||||||
tools:text="Some title"/>
|
tools:text="Some title"/>
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:letterSpacing="@dimen/text_button_letter_spacing"
|
android:letterSpacing="@dimen/text_button_letter_spacing"
|
||||||
|
android:paddingBottom="@dimen/measurement_tool_menu_title_padding_bottom"
|
||||||
android:text="@string/export_not_enough_space"
|
android:text="@string/export_not_enough_space"
|
||||||
android:textColor="?android:textColorPrimary"
|
android:textColor="?android:textColorPrimary"
|
||||||
android:textSize="@dimen/default_list_text_size"
|
android:textSize="@dimen/default_list_text_size"
|
||||||
|
|
|
@ -75,7 +75,6 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="?attr/route_info_bg"
|
android:background="?attr/route_info_bg"
|
||||||
android:foreground="@drawable/bg_contextmenu_shadow"
|
|
||||||
android:foregroundGravity="top|fill_horizontal">
|
android:foregroundGravity="top|fill_horizontal">
|
||||||
|
|
||||||
<androidx.core.widget.NestedScrollView
|
<androidx.core.widget.NestedScrollView
|
||||||
|
|
|
@ -23,16 +23,22 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="bottom"
|
android:layout_gravity="bottom"
|
||||||
android:background="?attr/bg_color"
|
|
||||||
android:gravity="center"
|
|
||||||
android:minHeight="@dimen/bottom_sheet_title_height"
|
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<androidx.appcompat.widget.AppCompatImageView
|
||||||
|
android:id="@+id/buttons_shadow"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="@dimen/bottom_sheet_top_shadow_height"
|
||||||
|
android:layout_gravity="bottom"
|
||||||
|
android:src="@drawable/shadow" />
|
||||||
|
|
||||||
<include layout="@layout/divider" />
|
<include layout="@layout/divider" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:background="?attr/bg_color"
|
||||||
|
android:minHeight="@dimen/measurement_tool_controls_height"
|
||||||
android:orientation="horizontal">
|
android:orientation="horizontal">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
@ -82,6 +88,7 @@
|
||||||
android:layout_height="match_parent" />
|
android:layout_height="match_parent" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
android:id="@+id/continue_button_container"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginLeft="@dimen/content_padding_half"
|
android:layout_marginLeft="@dimen/content_padding_half"
|
||||||
|
@ -104,7 +111,8 @@
|
||||||
android:id="@+id/appbar"
|
android:id="@+id/appbar"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="@android:color/transparent">
|
android:background="@android:color/transparent"
|
||||||
|
android:stateListAnimator="@animator/appbar_always_elevated">
|
||||||
|
|
||||||
<com.google.android.material.appbar.CollapsingToolbarLayout
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
||||||
android:id="@+id/toolbar_layout"
|
android:id="@+id/toolbar_layout"
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
android:background="?attr/bg_color">
|
android:background="?attr/bg_color">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
android:id="@+id/item_container"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="?attr/selectableItemBackground"
|
android:background="?attr/selectableItemBackground"
|
||||||
|
@ -30,9 +31,7 @@
|
||||||
android:layout_width="@dimen/standard_icon_size"
|
android:layout_width="@dimen/standard_icon_size"
|
||||||
android:layout_height="@dimen/standard_icon_size"
|
android:layout_height="@dimen/standard_icon_size"
|
||||||
android:layout_marginLeft="@dimen/content_padding"
|
android:layout_marginLeft="@dimen/content_padding"
|
||||||
android:layout_marginTop="@dimen/bottom_sheet_icon_margin"
|
|
||||||
android:layout_marginRight="@dimen/content_padding"
|
android:layout_marginRight="@dimen/content_padding"
|
||||||
android:layout_marginBottom="@dimen/bottom_sheet_icon_margin"
|
|
||||||
osmand:srcCompat="@drawable/ic_action_arrow_down" />
|
osmand:srcCompat="@drawable/ic_action_arrow_down" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
|
@ -48,6 +47,7 @@
|
||||||
android:id="@+id/title_tv"
|
android:id="@+id/title_tv"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginBottom="@dimen/subHeaderPadding"
|
||||||
android:letterSpacing="@dimen/text_button_letter_spacing"
|
android:letterSpacing="@dimen/text_button_letter_spacing"
|
||||||
android:textColor="?android:textColorPrimary"
|
android:textColor="?android:textColorPrimary"
|
||||||
android:textSize="@dimen/default_list_text_size"
|
android:textSize="@dimen/default_list_text_size"
|
||||||
|
@ -69,9 +69,7 @@
|
||||||
<View
|
<View
|
||||||
android:id="@+id/vertical_divider"
|
android:id="@+id/vertical_divider"
|
||||||
android:layout_width="1dp"
|
android:layout_width="1dp"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="@dimen/dialog_button_height"
|
||||||
android:layout_marginTop="@dimen/setting_profile_item_switch_margin"
|
|
||||||
android:layout_marginBottom="@dimen/setting_profile_item_switch_margin"
|
|
||||||
android:background="?attr/list_divider" />
|
android:background="?attr/list_divider" />
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
|
@ -79,6 +77,8 @@
|
||||||
style="@style/Widget.AppCompat.Toolbar.Button.Navigation"
|
style="@style/Widget.AppCompat.Toolbar.Button.Navigation"
|
||||||
android:layout_width="@dimen/acceptable_touch_radius"
|
android:layout_width="@dimen/acceptable_touch_radius"
|
||||||
android:layout_height="@dimen/acceptable_touch_radius"
|
android:layout_height="@dimen/acceptable_touch_radius"
|
||||||
|
android:layout_marginStart="@dimen/content_padding_small"
|
||||||
|
android:layout_marginLeft="@dimen/content_padding_small"
|
||||||
android:layout_marginEnd="@dimen/text_margin_small"
|
android:layout_marginEnd="@dimen/text_margin_small"
|
||||||
android:layout_marginRight="@dimen/text_margin_small">
|
android:layout_marginRight="@dimen/text_margin_small">
|
||||||
|
|
||||||
|
|
|
@ -117,7 +117,7 @@
|
||||||
<string name="poi_police">شرطة</string>
|
<string name="poi_police">شرطة</string>
|
||||||
<string name="poi_artwork_type_fountain">نوع العمل الفني : نافورة</string>
|
<string name="poi_artwork_type_fountain">نوع العمل الفني : نافورة</string>
|
||||||
<string name="poi_craft_carpenter">نجار</string>
|
<string name="poi_craft_carpenter">نجار</string>
|
||||||
<string name="poi_craft_plumber">سباك</string>
|
<string name="poi_craft_plumber">سباكة</string>
|
||||||
<string name="poi_car">معرض سيارات</string>
|
<string name="poi_car">معرض سيارات</string>
|
||||||
<string name="poi_car_repair">ورشة تصليح السيارات</string>
|
<string name="poi_car_repair">ورشة تصليح السيارات</string>
|
||||||
<string name="poi_recycling_printer_cartridges">خراطيش الطابعة</string>
|
<string name="poi_recycling_printer_cartridges">خراطيش الطابعة</string>
|
||||||
|
@ -702,7 +702,7 @@
|
||||||
<string name="poi_beauty_salon_nails">تجميل الاظافر</string>
|
<string name="poi_beauty_salon_nails">تجميل الاظافر</string>
|
||||||
<string name="poi_massage">صالون تدليك</string>
|
<string name="poi_massage">صالون تدليك</string>
|
||||||
<string name="poi_tattoo">صالون وشم</string>
|
<string name="poi_tattoo">صالون وشم</string>
|
||||||
<string name="poi_dry_cleaning">التنظيف الجاف</string>
|
<string name="poi_dry_cleaning">مغسلة ملابس</string>
|
||||||
<string name="poi_laundry">غسيل الملابس</string>
|
<string name="poi_laundry">غسيل الملابس</string>
|
||||||
<string name="poi_car_rental">تأجير سيارات</string>
|
<string name="poi_car_rental">تأجير سيارات</string>
|
||||||
<string name="poi_car_sharing">مشاركة السيارات</string>
|
<string name="poi_car_sharing">مشاركة السيارات</string>
|
||||||
|
@ -1369,7 +1369,7 @@
|
||||||
<string name="poi_health_specialty_social_paediatrics_yes">طب الأطفال الاجتماعي</string>
|
<string name="poi_health_specialty_social_paediatrics_yes">طب الأطفال الاجتماعي</string>
|
||||||
<string name="poi_health_specialty_obstetrics_caesarean_section_yes">طب التوليد (القيصرية)</string>
|
<string name="poi_health_specialty_obstetrics_caesarean_section_yes">طب التوليد (القيصرية)</string>
|
||||||
<string name="poi_health_specialty_addiction_medicine_yes">طب الإدمان</string>
|
<string name="poi_health_specialty_addiction_medicine_yes">طب الإدمان</string>
|
||||||
<string name="poi_health_specialty_optometry_yes">بصريات</string>
|
<string name="poi_health_specialty_optometry_yes">نظارات/بصريات</string>
|
||||||
<string name="poi_health_specialty_speech_therapy_yes">علاج النطق</string>
|
<string name="poi_health_specialty_speech_therapy_yes">علاج النطق</string>
|
||||||
<string name="poi_health_specialty_sports_medicine_yes">الطب الرياضي</string>
|
<string name="poi_health_specialty_sports_medicine_yes">الطب الرياضي</string>
|
||||||
<string name="poi_health_specialty_acupuncture_yes">الوخز بالإبر</string>
|
<string name="poi_health_specialty_acupuncture_yes">الوخز بالإبر</string>
|
||||||
|
@ -1739,7 +1739,7 @@
|
||||||
<string name="poi_craft_plasterer">جصاص</string>
|
<string name="poi_craft_plasterer">جصاص</string>
|
||||||
<string name="poi_craft_parquet_layer">طبقة الباركيه</string>
|
<string name="poi_craft_parquet_layer">طبقة الباركيه</string>
|
||||||
<string name="poi_craft_painter">دهان</string>
|
<string name="poi_craft_painter">دهان</string>
|
||||||
<string name="poi_craft_optician">أخصائي بصريات</string>
|
<string name="poi_craft_optician">محل نظارات/بصريات</string>
|
||||||
<string name="poi_craft_metal_construction">حرفة الصناعات المعدنية</string>
|
<string name="poi_craft_metal_construction">حرفة الصناعات المعدنية</string>
|
||||||
<string name="poi_craft_key_cutter">ناسخ مفاتيح</string>
|
<string name="poi_craft_key_cutter">ناسخ مفاتيح</string>
|
||||||
<string name="poi_craft_locksmith">صانع ومصلح المفاتيح</string>
|
<string name="poi_craft_locksmith">صانع ومصلح المفاتيح</string>
|
||||||
|
@ -2116,7 +2116,7 @@
|
||||||
<string name="poi_piste_difficulty_easy">سهل</string>
|
<string name="poi_piste_difficulty_easy">سهل</string>
|
||||||
<string name="poi_rtsa_scale">مقياس RTSA</string>
|
<string name="poi_rtsa_scale">مقياس RTSA</string>
|
||||||
<string name="poi_windfall">متضرره من الرياح</string>
|
<string name="poi_windfall">متضرره من الرياح</string>
|
||||||
<string name="poi_scrub">فيضة/شجيرات ربيعية</string>
|
<string name="poi_scrub">فيضة/روضة</string>
|
||||||
<string name="poi_heath">براح</string>
|
<string name="poi_heath">براح</string>
|
||||||
<string name="poi_railway_level_crossing">مستوى العبور</string>
|
<string name="poi_railway_level_crossing">مستوى العبور</string>
|
||||||
<string name="poi_railway_crossing">معبر خط القطار</string>
|
<string name="poi_railway_crossing">معبر خط القطار</string>
|
||||||
|
|
|
@ -3955,12 +3955,12 @@
|
||||||
<string name="login_open_street_map">Ensaluti al OpenStreetMap</string>
|
<string name="login_open_street_map">Ensaluti al OpenStreetMap</string>
|
||||||
<string name="login_open_street_map_org">Ensaluti al OpenStreetMap.org</string>
|
<string name="login_open_street_map_org">Ensaluti al OpenStreetMap.org</string>
|
||||||
<string name="sign_in_with_open_street_map">Ensaluti per OpenStreetMap</string>
|
<string name="sign_in_with_open_street_map">Ensaluti per OpenStreetMap</string>
|
||||||
<string name="open_street_map_login_mode">Ensalutu por alŝuti novajn aŭ modifitajn ŝanĝojn
|
<string name="open_street_map_login_mode">Vi devas ensaluti por alŝuti novajn aŭ modifitajn ŝanĝojn.
|
||||||
\n
|
\n
|
||||||
\naŭ per la sekura metodo OAuth aŭ per enigi uzantnomon kaj pasvorton.</string>
|
\nVi povas ensaluti per la sekura metodo OAuth aŭ per enigi salutnomon kaj pasvorton.</string>
|
||||||
<string name="use_login_password">Ensaluti per uzantnomo kaj pasvorto</string>
|
<string name="use_login_password">Ensaluti per salutnomo kaj pasvorto</string>
|
||||||
<string name="login_account">Konto</string>
|
<string name="login_account">Konto</string>
|
||||||
<string name="user_login">Uzantnomo</string>
|
<string name="user_login">Salutnomo</string>
|
||||||
<string name="markers_history">Historio de markoj</string>
|
<string name="markers_history">Historio de markoj</string>
|
||||||
<string name="send_files_to_openstreetmap">Sendi GPX‑dosieron al OpenStreetMap</string>
|
<string name="send_files_to_openstreetmap">Sendi GPX‑dosieron al OpenStreetMap</string>
|
||||||
<string name="enter_text_separated">Enigu etikedojn disigitajn per komo (,).</string>
|
<string name="enter_text_separated">Enigu etikedojn disigitajn per komo (,).</string>
|
||||||
|
@ -3970,11 +3970,11 @@
|
||||||
<string name="gpx_upload_trackable_visibility_descr">“Spurebla” signifas, ke la GPX‑spuro ne montriĝos en publikaj listoj, sed pritraktitaj punktoj kun tempindikoj el ĝi (kiuj ne povos esti senpere ligitaj al vi) estos elŝuteblaj per la publika API GPS.</string>
|
<string name="gpx_upload_trackable_visibility_descr">“Spurebla” signifas, ke la GPX‑spuro ne montriĝos en publikaj listoj, sed pritraktitaj punktoj kun tempindikoj el ĝi (kiuj ne povos esti senpere ligitaj al vi) estos elŝuteblaj per la publika API GPS.</string>
|
||||||
<string name="osm_edit_close_note">Fermi OSM-rimarkon</string>
|
<string name="osm_edit_close_note">Fermi OSM-rimarkon</string>
|
||||||
<string name="osm_edit_comment_note">Komenti OSM-rimarkon</string>
|
<string name="osm_edit_comment_note">Komenti OSM-rimarkon</string>
|
||||||
<string name="osm_login_descr">Ensalutii per la sekura metodo OAuth aŭ per uzi uzantnomon kaj pasvorton.</string>
|
<string name="osm_login_descr">Vi povas ensalutii per la sekura metodo OAuth aŭ per uzi salutnomon kaj pasvorton.</string>
|
||||||
<string name="shared_string_add_photo">Aldoni foton</string>
|
<string name="shared_string_add_photo">Aldoni foton</string>
|
||||||
<string name="register_on_openplacereviews">Registri ĉe
|
<string name="register_on_openplacereviews">Registri ĉe
|
||||||
\nOpenPlaceReviews.org</string>
|
\nOpenPlaceReviews.org</string>
|
||||||
<string name="register_on_openplacereviews_desc">Ensaluti en la paĝon de la malferm‑datuma projekto OpenPlaceReviews.org por alŝuti fotojn.</string>
|
<string name="register_on_openplacereviews_desc">Fotoj estas liverataj de la malferm‑datuma projekto OpenPlaceReviews.org. Por alŝuti viajn fotojn, vi devas enlasaluti en la retejon.</string>
|
||||||
<string name="register_opr_create_new_account">Krei novan konton</string>
|
<string name="register_opr_create_new_account">Krei novan konton</string>
|
||||||
<string name="register_opr_have_account">Mi jam havas konton</string>
|
<string name="register_opr_have_account">Mi jam havas konton</string>
|
||||||
<string name="shared_string_search_history">Serĉi en historio</string>
|
<string name="shared_string_search_history">Serĉi en historio</string>
|
||||||
|
@ -3996,4 +3996,6 @@
|
||||||
<string name="select_items_for_import">Elektu elementojn por enporti.</string>
|
<string name="select_items_for_import">Elektu elementojn por enporti.</string>
|
||||||
<string name="use_dev_url_descr">Baskuli al dev.openstreetmap.org anstataŭ openstreetmap.org por testi alŝuti OSM‑rimarkojn, interesejojn, GPX‑spurojn.</string>
|
<string name="use_dev_url_descr">Baskuli al dev.openstreetmap.org anstataŭ openstreetmap.org por testi alŝuti OSM‑rimarkojn, interesejojn, GPX‑spurojn.</string>
|
||||||
<string name="use_dev_url">Uzi dev.openstreetmap.org</string>
|
<string name="use_dev_url">Uzi dev.openstreetmap.org</string>
|
||||||
|
<string name="cannot_upload_image">Ne povas alŝuti la bildon, reprovu poste</string>
|
||||||
|
<string name="select_picture">Elektu bildon</string>
|
||||||
</resources>
|
</resources>
|
|
@ -400,7 +400,7 @@
|
||||||
<string name="poi_diving">Buceo</string>
|
<string name="poi_diving">Buceo</string>
|
||||||
<string name="poi_scuba_diving">Submarinismo</string>
|
<string name="poi_scuba_diving">Submarinismo</string>
|
||||||
<string name="poi_dog_racing">Canódromo</string>
|
<string name="poi_dog_racing">Canódromo</string>
|
||||||
<string name="poi_equestrian">Equitación</string>
|
<string name="poi_equestrian">Deportes ecuestres</string>
|
||||||
<string name="poi_field_hockey">Hockey sobre césped</string>
|
<string name="poi_field_hockey">Hockey sobre césped</string>
|
||||||
<string name="poi_golf">Golf</string>
|
<string name="poi_golf">Golf</string>
|
||||||
<string name="poi_gymnastics">Gimnasia</string>
|
<string name="poi_gymnastics">Gimnasia</string>
|
||||||
|
@ -1234,7 +1234,7 @@
|
||||||
<string name="poi_railway_crossing">Paso a nivel peatonal;Cruce peatonal ferroviario</string>
|
<string name="poi_railway_crossing">Paso a nivel peatonal;Cruce peatonal ferroviario</string>
|
||||||
<string name="poi_railway_level_crossing">Paso a nivel;Cruce ferroviario</string>
|
<string name="poi_railway_level_crossing">Paso a nivel;Cruce ferroviario</string>
|
||||||
<string name="poi_bird_hide">Observatorio de aves</string>
|
<string name="poi_bird_hide">Observatorio de aves</string>
|
||||||
<string name="poi_horse_riding">Equitación</string>
|
<string name="poi_horse_riding">Centro ecuestre</string>
|
||||||
<string name="poi_garden">Jardín</string>
|
<string name="poi_garden">Jardín</string>
|
||||||
<string name="poi_grass">Césped</string>
|
<string name="poi_grass">Césped</string>
|
||||||
<string name="poi_grassland">Pastizal</string>
|
<string name="poi_grassland">Pastizal</string>
|
||||||
|
|
|
@ -3948,17 +3948,17 @@
|
||||||
<string name="icon_group_emergency">Emergencia</string>
|
<string name="icon_group_emergency">Emergencia</string>
|
||||||
<string name="icon_group_amenity">Comodidad</string>
|
<string name="icon_group_amenity">Comodidad</string>
|
||||||
<string name="file_already_imported">El archivo ya fue importado en OsmAnd</string>
|
<string name="file_already_imported">El archivo ya fue importado en OsmAnd</string>
|
||||||
<string name="user_login">Nombre de usuario</string>
|
<string name="user_login">Ingresar</string>
|
||||||
<string name="use_login_password">Ingresar nombre de usuario y contraseña</string>
|
<string name="use_login_password">Ingresar con usuario y contraseña</string>
|
||||||
<string name="subscription_payment_issue_title">Hay un problema con la suscripción. Pulsa el botón para ir a los ajustes de la suscripción de Google Play y corregir el método de pago.</string>
|
<string name="subscription_payment_issue_title">Hay un problema con la suscripción. Pulsa el botón para ir a los ajustes de la suscripción de Google Play y corregir el método de pago.</string>
|
||||||
<string name="subscription_paused_title">La suscripción a OsmAnd Live se ha pausado</string>
|
<string name="subscription_paused_title">La suscripción a OsmAnd Live se ha pausado</string>
|
||||||
<string name="subscription_on_hold_title">La suscripción a OsmAnd Live está en espera</string>
|
<string name="subscription_on_hold_title">La suscripción a OsmAnd Live está en espera</string>
|
||||||
<string name="subscription_expired_title">La suscripción a OsmAnd Live ha caducado</string>
|
<string name="subscription_expired_title">La suscripción a OsmAnd Live ha caducado</string>
|
||||||
<string name="sign_in_with_open_street_map">Ingresar con OpenStreetMap</string>
|
<string name="sign_in_with_open_street_map">Ingresar con OpenStreetMap</string>
|
||||||
<string name="send_files_to_openstreetmap">Enviar archivo GPX a OpenStreetMap</string>
|
<string name="send_files_to_openstreetmap">Enviar archivo GPX a OpenStreetMap</string>
|
||||||
<string name="open_street_map_login_mode">Inicia sesión para subir los cambios nuevos o modificados,
|
<string name="open_street_map_login_mode">Debes iniciar sesión para subir los cambios nuevos o modificados.
|
||||||
\n
|
\n
|
||||||
\nya sea con OAuth o usando el nombre de usuario y contraseña.</string>
|
\nPuedes ingresar usando el método seguro de OAuth o con nombre de usuario y contraseña.</string>
|
||||||
<string name="message_you_need_add_two_points_to_show_graphs">Debes añadir al menos dos puntos</string>
|
<string name="message_you_need_add_two_points_to_show_graphs">Debes añadir al menos dos puntos</string>
|
||||||
<string name="markers_history">Historial de marcadores</string>
|
<string name="markers_history">Historial de marcadores</string>
|
||||||
<string name="manage_subscription">Gestionar suscripción</string>
|
<string name="manage_subscription">Gestionar suscripción</string>
|
||||||
|
@ -3973,10 +3973,10 @@
|
||||||
<string name="shared_string_add_photo">Añadir foto</string>
|
<string name="shared_string_add_photo">Añadir foto</string>
|
||||||
<string name="register_opr_have_account">Ya tengo cuenta</string>
|
<string name="register_opr_have_account">Ya tengo cuenta</string>
|
||||||
<string name="register_opr_create_new_account">Crear nueva cuenta</string>
|
<string name="register_opr_create_new_account">Crear nueva cuenta</string>
|
||||||
<string name="register_on_openplacereviews_desc">Ingresa en el sitio web del proyecto de datos abiertos OpenPlaceReviews.org para subir más fotos.</string>
|
<string name="register_on_openplacereviews_desc">Las fotos son provistas por el proyecto de datos abiertos OpenPlaceReviews.org. Para subir fotos debes registrarte en el sitio web.</string>
|
||||||
<string name="register_on_openplacereviews">Registrarse en
|
<string name="register_on_openplacereviews">Registrarse en
|
||||||
\nOpenPlaceReviews.org</string>
|
\nOpenPlaceReviews.org</string>
|
||||||
<string name="osm_login_descr">Ingresa usando el método seguro de OAuth o usa el nombre de usuario y contraseña.</string>
|
<string name="osm_login_descr">Puedes iniciar sesión con el método seguro de OAuth o usar el nombre de usuario y contraseña.</string>
|
||||||
<string name="osm_edit_comment_note">Comentar nota de OSM</string>
|
<string name="osm_edit_comment_note">Comentar nota de OSM</string>
|
||||||
<string name="osm_edit_close_note">Cerrar nota de OSM</string>
|
<string name="osm_edit_close_note">Cerrar nota de OSM</string>
|
||||||
<string name="shared_string_search_history">Historial de búsqueda</string>
|
<string name="shared_string_search_history">Historial de búsqueda</string>
|
||||||
|
@ -3994,4 +3994,11 @@
|
||||||
\nOpenPlaceReviews (fotos de PDI);
|
\nOpenPlaceReviews (fotos de PDI);
|
||||||
\nMapillary (imágenes a nivel de calle);
|
\nMapillary (imágenes a nivel de calle);
|
||||||
\nWeb / Wikimedia (fotos de PDI incluidas en los datos de OpenStreetMap).</string>
|
\nWeb / Wikimedia (fotos de PDI incluidas en los datos de OpenStreetMap).</string>
|
||||||
|
<string name="use_dev_url_descr">Cambia a la versión para desarrolladores «dev.openstreetmap.org» en lugar de openstreetmap.org para probar la carga de PDI, notas de OSM y archivos GPX.</string>
|
||||||
|
<string name="use_dev_url">Usar dev.openstreetmap.org</string>
|
||||||
|
<string name="select_picture">Elegir imagen</string>
|
||||||
|
<string name="select_items_for_import">Marca los elementos que serán importados.</string>
|
||||||
|
<string name="select_groups_for_import">Marca los grupos que serán importados.</string>
|
||||||
|
<string name="cannot_upload_image">No se puede subir la imagen, inténtalo más tarde</string>
|
||||||
|
<string name="app_mode_gap">Separador</string>
|
||||||
</resources>
|
</resources>
|
|
@ -3815,7 +3815,7 @@ Area honi dagokio: %1$s x %2$s</string>
|
||||||
<string name="save_global_track_interval_descr">Zehaztu lorratz orokorreko grabazio erregistroaren tartea (mapan \'Bidaia grabaketa\' trepetaren bidez aktibatuta dago).</string>
|
<string name="save_global_track_interval_descr">Zehaztu lorratz orokorreko grabazio erregistroaren tartea (mapan \'Bidaia grabaketa\' trepetaren bidez aktibatuta dago).</string>
|
||||||
<string name="open_saved_track">Ireki gordetako lorratza</string>
|
<string name="open_saved_track">Ireki gordetako lorratza</string>
|
||||||
<string name="gpx_upload_trackable_visibility_descr">\"Jarraigarria\" esan nahi du lorratza ez dela inolako zerrenda publikoetan agertzen, baina prozesatutako puntuak bere denbora markekin (zurekin zuzenean lotu ezin direnak) GPS API publikoaren deskargen bidez agertzen dira.</string>
|
<string name="gpx_upload_trackable_visibility_descr">\"Jarraigarria\" esan nahi du lorratza ez dela inolako zerrenda publikoetan agertzen, baina prozesatutako puntuak bere denbora markekin (zurekin zuzenean lotu ezin direnak) GPS API publikoaren deskargen bidez agertzen dira.</string>
|
||||||
<string name="app_mode_wheelchair_forward"></string>
|
<string name="app_mode_wheelchair_forward"/>
|
||||||
<string name="icon_group_amenity">Prestazioa</string>
|
<string name="icon_group_amenity">Prestazioa</string>
|
||||||
<string name="login_open_street_map">OpenStreetMap-eko saio hasiera</string>
|
<string name="login_open_street_map">OpenStreetMap-eko saio hasiera</string>
|
||||||
<string name="login_open_street_map_org">OpenStreetMap.org-eko saio hasiera</string>
|
<string name="login_open_street_map_org">OpenStreetMap.org-eko saio hasiera</string>
|
||||||
|
@ -3876,7 +3876,7 @@ Area honi dagokio: %1$s x %2$s</string>
|
||||||
\nbai OAuth-ekin edo zure erabiltzaile izena eta pasahitza erabiliz.</string>
|
\nbai OAuth-ekin edo zure erabiltzaile izena eta pasahitza erabiliz.</string>
|
||||||
<string name="use_login_password">Hasi saioa erabiltzaile izenarekin eta pasahitzarekin</string>
|
<string name="use_login_password">Hasi saioa erabiltzaile izenarekin eta pasahitzarekin</string>
|
||||||
<string name="login_account">Kontua</string>
|
<string name="login_account">Kontua</string>
|
||||||
<string name="user_login">Erabiltzaile-izena</string>
|
<string name="user_login">Hasi saioa</string>
|
||||||
<string name="manage_subscription">Kudeatu harpidetza</string>
|
<string name="manage_subscription">Kudeatu harpidetza</string>
|
||||||
<string name="subscription_payment_issue_title">Arazo bat dago zure harpidetzarekin. Egin klik botoian Google Play harpidetzaren ezarpenetara joateko zure ordainketa-metodoa konpontzeko.</string>
|
<string name="subscription_payment_issue_title">Arazo bat dago zure harpidetzarekin. Egin klik botoian Google Play harpidetzaren ezarpenetara joateko zure ordainketa-metodoa konpontzeko.</string>
|
||||||
<string name="subscription_expired_title">OsmAnd Live harpidetza iraungi egin da</string>
|
<string name="subscription_expired_title">OsmAnd Live harpidetza iraungi egin da</string>
|
||||||
|
@ -3998,4 +3998,6 @@ Area honi dagokio: %1$s x %2$s</string>
|
||||||
<string name="markers_history">Markatzaileen historia</string>
|
<string name="markers_history">Markatzaileen historia</string>
|
||||||
<string name="send_files_to_openstreetmap">Bidali GPX fitxategia OpenStreetMap-era</string>
|
<string name="send_files_to_openstreetmap">Bidali GPX fitxategia OpenStreetMap-era</string>
|
||||||
<string name="osm_edit_comment_note">Egin iruzkina OSM oharrean</string>
|
<string name="osm_edit_comment_note">Egin iruzkina OSM oharrean</string>
|
||||||
|
<string name="select_picture">Hautatu argazkia</string>
|
||||||
|
<string name="use_dev_url">Erabili dev.openstreetmap.org</string>
|
||||||
</resources>
|
</resources>
|
|
@ -3970,14 +3970,14 @@
|
||||||
<string name="gpx_upload_public_visibility_descr">Público significa que o rastreamento será mostrado publicamente nos Seus traços de GPS e em listas públicas de rastreamento de GPS. Os dados servidos através da API não fazem referência à sua página de rastreamento. As marcas temporais dos pontos de rastreamento não estão disponíveis através da API pública do GPS e os pontos não estão ordenados cronologicamente. No entanto, outros utilizadores ainda são capazes de descarregar o rastreamento bruto da lista pública de rastreamento e de quaisquer carimbos de tempo contidos nela.</string>
|
<string name="gpx_upload_public_visibility_descr">Público significa que o rastreamento será mostrado publicamente nos Seus traços de GPS e em listas públicas de rastreamento de GPS. Os dados servidos através da API não fazem referência à sua página de rastreamento. As marcas temporais dos pontos de rastreamento não estão disponíveis através da API pública do GPS e os pontos não estão ordenados cronologicamente. No entanto, outros utilizadores ainda são capazes de descarregar o rastreamento bruto da lista pública de rastreamento e de quaisquer carimbos de tempo contidos nela.</string>
|
||||||
<string name="gpx_upload_private_visibility_descr">Privado significa que o rastreamento não aparecerá em nenhuma listagem pública, mas os pontos de rastreamento dele ainda estarão disponíveis através da API pública do GPS sem carimbos de tempo, mas não serão ordenados cronologicamente.</string>
|
<string name="gpx_upload_private_visibility_descr">Privado significa que o rastreamento não aparecerá em nenhuma listagem pública, mas os pontos de rastreamento dele ainda estarão disponíveis através da API pública do GPS sem carimbos de tempo, mas não serão ordenados cronologicamente.</string>
|
||||||
<string name="gpx_upload_identifiable_visibility_descr">Identificável significa que o rastreamento será mostrado publicamente nos Seus traços de GPS e em listas públicas de rastreamento de GPS, ou seja, outros utilizadores serão capazes de descarregar o rastreamento bruto e associá-lo ao seu nome de utilizador. Os dados servidos através da API dos pontos de rastreamento referenciarão à sua página de rastreamento original. As marcas de tempo dos pontos de rastreamento estão disponíveis através da API pública do GPS.</string>
|
<string name="gpx_upload_identifiable_visibility_descr">Identificável significa que o rastreamento será mostrado publicamente nos Seus traços de GPS e em listas públicas de rastreamento de GPS, ou seja, outros utilizadores serão capazes de descarregar o rastreamento bruto e associá-lo ao seu nome de utilizador. Os dados servidos através da API dos pontos de rastreamento referenciarão à sua página de rastreamento original. As marcas de tempo dos pontos de rastreamento estão disponíveis através da API pública do GPS.</string>
|
||||||
<string name="gpx_upload_trackable_visibility_descr">Rastreável significa que o rastreamento não aparecerá em nenhuma lista pública, mas os pontos de rastreamento a partir dele ainda estarão disponíveis através da API pública do GPS com carimbos de tempo. Outros utilizadores só poderão descarregar pontos de rastreamento processados do seu rastreamento que não podem ser associados diretamente a si.</string>
|
<string name="gpx_upload_trackable_visibility_descr">\"Rastreável\" significa que o rastreamento não aparece em nenhuma listagem pública, mas pontos de rastreamento processados com carimbos de tempo a partir dele (que não podem ser associados diretamente a si) fazem através de descarregadas da API pública do GPS.</string>
|
||||||
<string name="osm_edit_close_note">Fechar nota do OSM</string>
|
<string name="osm_edit_close_note">Fechar nota do OSM</string>
|
||||||
<string name="osm_edit_comment_note">Comentário de nota do OSM</string>
|
<string name="osm_edit_comment_note">Comentário de nota do OSM</string>
|
||||||
<string name="osm_login_descr">Faça login a usar o método seguro OAuth ou use o seu nome de utilizador e a palavra-passe.</string>
|
<string name="osm_login_descr">Pode fazer login pelo método seguro OAuth ou use o seu nome de utilizador e a palavra-passe.</string>
|
||||||
<string name="shared_string_add_photo">Adicionar fotos</string>
|
<string name="shared_string_add_photo">Adicionar fotos</string>
|
||||||
<string name="register_on_openplacereviews">Cadastre-se em
|
<string name="register_on_openplacereviews">Cadastre-se em
|
||||||
\nOpenPlaceReviews.org</string>
|
\nOpenPlaceReviews.org</string>
|
||||||
<string name="register_on_openplacereviews_desc">Faça login no site do projeto de dados abertos OpenPlaceReviews.org para enviar ainda mais fotos.</string>
|
<string name="register_on_openplacereviews_desc">As fotos são fornecidas pelo projeto de dados abertos OpenPlaceReviews.org. Para enviar as suas fotos precisa cadastrar-se no site.</string>
|
||||||
<string name="register_opr_create_new_account">Criar uma conta</string>
|
<string name="register_opr_create_new_account">Criar uma conta</string>
|
||||||
<string name="register_opr_have_account">Já tenho uma conta</string>
|
<string name="register_opr_have_account">Já tenho uma conta</string>
|
||||||
<string name="shared_string_search_history">Histórico de pesquisa</string>
|
<string name="shared_string_search_history">Histórico de pesquisa</string>
|
||||||
|
@ -3998,4 +3998,7 @@
|
||||||
<string name="select_groups_for_import">Seleccionar os grupos que serão importados.</string>
|
<string name="select_groups_for_import">Seleccionar os grupos que serão importados.</string>
|
||||||
<string name="select_items_for_import">Seleccionar os objectos que serão importados.</string>
|
<string name="select_items_for_import">Seleccionar os objectos que serão importados.</string>
|
||||||
<string name="use_dev_url">Utilizar dev.openstreetmap.org</string>
|
<string name="use_dev_url">Utilizar dev.openstreetmap.org</string>
|
||||||
|
<string name="cannot_upload_image">Não é possível enviar a imagem, por favor, tente novamente mais tarde</string>
|
||||||
|
<string name="select_picture">Selecione a imagem</string>
|
||||||
|
<string name="use_dev_url_descr">Mude para usar dev.openstreetmap.org ao invés de openstreetmap.org para testar enviar uma OSM Nota / POI / GPX.</string>
|
||||||
</resources>
|
</resources>
|
|
@ -3838,4 +3838,30 @@
|
||||||
<string name="poi_radar_tower">Радиолокационная вышка</string>
|
<string name="poi_radar_tower">Радиолокационная вышка</string>
|
||||||
<string name="poi_parking_layby">Придорожная стоянка</string>
|
<string name="poi_parking_layby">Придорожная стоянка</string>
|
||||||
<string name="poi_parking_rooftop">На крыше</string>
|
<string name="poi_parking_rooftop">На крыше</string>
|
||||||
|
<string name="poi_diplomatic_services_citizen_services_no">Нет</string>
|
||||||
|
<string name="poi_diplomatic_services_citizen_services_yes">Да</string>
|
||||||
|
<string name="poi_diplomatic_services_immigrant_visas_no">Нет</string>
|
||||||
|
<string name="poi_diplomatic_services_immigrant_visas_yes">Да</string>
|
||||||
|
<string name="poi_diplomatic_services_non_immigrant_visas_no">Нет</string>
|
||||||
|
<string name="poi_diplomatic_services_non_immigrant_visas_yes">Да</string>
|
||||||
|
<string name="poi_liaison_representative_office">Представительство</string>
|
||||||
|
<string name="poi_liaison_liaison_office">Офис</string>
|
||||||
|
<string name="poi_consulate_honorary_consul">Почетный консул</string>
|
||||||
|
<string name="poi_consulate_consulate_general">Генеральное консульство</string>
|
||||||
|
<string name="poi_consulate_consular_office">Консульский офис</string>
|
||||||
|
<string name="poi_consulate_yes">Во главе с консулом</string>
|
||||||
|
<string name="poi_embassy_residence">Резиденция</string>
|
||||||
|
<string name="poi_embassy_nunciature">Нунциатура</string>
|
||||||
|
<string name="poi_embassy_mission">Миссия</string>
|
||||||
|
<string name="poi_embassy_high_commission">Верховный комиссариат</string>
|
||||||
|
<string name="poi_embassy_delegation">Делегация</string>
|
||||||
|
<string name="poi_embassy_branch_embassy">Филиал</string>
|
||||||
|
<string name="poi_embassy_yes">Во главе с послом</string>
|
||||||
|
<string name="poi_diplomatic_liaison">Связь</string>
|
||||||
|
<string name="poi_diplomatic_embassy">Посольство</string>
|
||||||
|
<string name="poi_diplomatic_services_citizen_services_filter">Гражданские услуги</string>
|
||||||
|
<string name="poi_diplomatic_services_immigrant_visas_filter">Иммиграционные визы</string>
|
||||||
|
<string name="poi_diplomatic_services_non_immigrant_visas_filter">Неиммиграционные визы</string>
|
||||||
|
<string name="poi_liaison_filter">Связь</string>
|
||||||
|
<string name="poi_embassy_filter">Посольство</string>
|
||||||
</resources>
|
</resources>
|
|
@ -3991,4 +3991,5 @@
|
||||||
<string name="register_on_openplacereviews_desc">Фотографии предоставлены проектом открытых данных OpenPlaceReviews.org. Чтобы отправить свои фотографии, необходимо зарегистрироваться на сайте.</string>
|
<string name="register_on_openplacereviews_desc">Фотографии предоставлены проектом открытых данных OpenPlaceReviews.org. Чтобы отправить свои фотографии, необходимо зарегистрироваться на сайте.</string>
|
||||||
<string name="cannot_upload_image">Невозможно отправить изображение, попробуйте позже</string>
|
<string name="cannot_upload_image">Невозможно отправить изображение, попробуйте позже</string>
|
||||||
<string name="select_picture">Выбор изображения</string>
|
<string name="select_picture">Выбор изображения</string>
|
||||||
|
<string name="app_mode_kayak">Каяк</string>
|
||||||
</resources>
|
</resources>
|
|
@ -397,6 +397,7 @@
|
||||||
<dimen name="setting_list_item_small_height">42dp</dimen>
|
<dimen name="setting_list_item_small_height">42dp</dimen>
|
||||||
<dimen name="setting_select_icon_button_height">128dp</dimen>
|
<dimen name="setting_select_icon_button_height">128dp</dimen>
|
||||||
<dimen name="setting_select_icon_button_width">164dp</dimen>
|
<dimen name="setting_select_icon_button_width">164dp</dimen>
|
||||||
|
<dimen name="setting_list_item_group_height">68dp</dimen>
|
||||||
|
|
||||||
<dimen name="slider_thumb_size">6dp</dimen>
|
<dimen name="slider_thumb_size">6dp</dimen>
|
||||||
<dimen name="slider_thumb_halo_size">12dp</dimen>
|
<dimen name="slider_thumb_halo_size">12dp</dimen>
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
Thx - Hardy
|
Thx - Hardy
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
<string name="ltr_or_rtl_combine_via_star">%1$s * %2$s</string>
|
||||||
<string name="add_photos_descr">OsmAnd shows photos from several sources:\nOpenPlaceReviews - POI photos;\nMapillary - street-level imagery;\nWeb / Wikimedia - POI photos specified in OpenStreetMap data.</string>
|
<string name="add_photos_descr">OsmAnd shows photos from several sources:\nOpenPlaceReviews - POI photos;\nMapillary - street-level imagery;\nWeb / Wikimedia - POI photos specified in OpenStreetMap data.</string>
|
||||||
<string name="use_dev_url">Use dev.openstreetmap.org</string>
|
<string name="use_dev_url">Use dev.openstreetmap.org</string>
|
||||||
<string name="use_dev_url_descr">Switch to use "dev.openstreetmap.org" instead of "openstreetmap.org" to testing uploading OSM Note / POI / GPX.</string>
|
<string name="use_dev_url_descr">Switch to use "dev.openstreetmap.org" instead of "openstreetmap.org" to testing uploading OSM Note / POI / GPX.</string>
|
||||||
|
|
|
@ -27,7 +27,7 @@ public class AnalyticsHelper extends SQLiteOpenHelper {
|
||||||
|
|
||||||
private final static Log LOG = PlatformUtil.getLog(AnalyticsHelper.class);
|
private final static Log LOG = PlatformUtil.getLog(AnalyticsHelper.class);
|
||||||
|
|
||||||
private final static String ANALYTICS_UPLOAD_URL = "https://test.osmand.net/api/submit_analytics";
|
private final static String ANALYTICS_UPLOAD_URL = "https://osmand.net/api/submit_analytics";
|
||||||
private final static String ANALYTICS_FILE_NAME = "analytics.json";
|
private final static String ANALYTICS_FILE_NAME = "analytics.json";
|
||||||
|
|
||||||
private final static int DATA_PARCEL_SIZE = 500; // 500 events
|
private final static int DATA_PARCEL_SIZE = 500; // 500 events
|
||||||
|
|
|
@ -66,6 +66,8 @@ import net.osmand.plus.voice.JSTTSCommandPlayerImpl;
|
||||||
import net.osmand.plus.voice.MediaCommandPlayerImpl;
|
import net.osmand.plus.voice.MediaCommandPlayerImpl;
|
||||||
import net.osmand.plus.voice.TTSCommandPlayerImpl;
|
import net.osmand.plus.voice.TTSCommandPlayerImpl;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
||||||
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
|
import net.osmand.plus.wikivoyage.data.TravelObfHelper;
|
||||||
import net.osmand.render.RenderingRulesStorage;
|
import net.osmand.render.RenderingRulesStorage;
|
||||||
import net.osmand.router.RoutingConfiguration;
|
import net.osmand.router.RoutingConfiguration;
|
||||||
import net.osmand.util.Algorithms;
|
import net.osmand.util.Algorithms;
|
||||||
|
@ -85,7 +87,6 @@ import java.util.Locale;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
import btools.routingapp.BRouterServiceConnection;
|
|
||||||
import btools.routingapp.IBRouterService;
|
import btools.routingapp.IBRouterService;
|
||||||
|
|
||||||
import static net.osmand.plus.AppVersionUpgradeOnInit.LAST_APP_VERSION;
|
import static net.osmand.plus.AppVersionUpgradeOnInit.LAST_APP_VERSION;
|
||||||
|
@ -457,11 +458,14 @@ public class AppInitializer implements IProgress {
|
||||||
app.mapMarkersHelper = startupInit(new MapMarkersHelper(app), MapMarkersHelper.class);
|
app.mapMarkersHelper = startupInit(new MapMarkersHelper(app), MapMarkersHelper.class);
|
||||||
app.searchUICore = startupInit(new QuickSearchHelper(app), QuickSearchHelper.class);
|
app.searchUICore = startupInit(new QuickSearchHelper(app), QuickSearchHelper.class);
|
||||||
app.mapViewTrackingUtilities = startupInit(new MapViewTrackingUtilities(app), MapViewTrackingUtilities.class);
|
app.mapViewTrackingUtilities = startupInit(new MapViewTrackingUtilities(app), MapViewTrackingUtilities.class);
|
||||||
app.travelDbHelper = new TravelDbHelper(app);
|
|
||||||
|
//TODO cleanup after Travel migration complete
|
||||||
|
app.travelHelper = TravelObfHelper.checkIfObfFileExists(app) ? new TravelObfHelper(app) : new TravelDbHelper(app);
|
||||||
if (app.getSettings().SELECTED_TRAVEL_BOOK.get() != null) {
|
if (app.getSettings().SELECTED_TRAVEL_BOOK.get() != null) {
|
||||||
app.travelDbHelper.initTravelBooks();
|
app.travelHelper.initTravelBooks();
|
||||||
}
|
}
|
||||||
app.travelDbHelper = startupInit(app.travelDbHelper, TravelDbHelper.class);
|
app.travelHelper = startupInit(app.travelHelper, TravelHelper.class);
|
||||||
|
|
||||||
app.lockHelper = startupInit(new LockHelper(app), LockHelper.class);
|
app.lockHelper = startupInit(new LockHelper(app), LockHelper.class);
|
||||||
app.settingsHelper = startupInit(new SettingsHelper(app), SettingsHelper.class);
|
app.settingsHelper = startupInit(new SettingsHelper(app), SettingsHelper.class);
|
||||||
app.quickActionRegistry = startupInit(new QuickActionRegistry(app.getSettings()), QuickActionRegistry.class);
|
app.quickActionRegistry = startupInit(new QuickActionRegistry(app.getSettings()), QuickActionRegistry.class);
|
||||||
|
|
|
@ -79,7 +79,7 @@ import net.osmand.plus.settings.backend.OsmAndAppCustomization;
|
||||||
import net.osmand.plus.settings.backend.OsmandSettings;
|
import net.osmand.plus.settings.backend.OsmandSettings;
|
||||||
import net.osmand.plus.settings.backend.backup.SettingsHelper;
|
import net.osmand.plus.settings.backend.backup.SettingsHelper;
|
||||||
import net.osmand.plus.voice.CommandPlayer;
|
import net.osmand.plus.voice.CommandPlayer;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
import net.osmand.router.GeneralRouter;
|
import net.osmand.router.GeneralRouter;
|
||||||
import net.osmand.router.RoutingConfiguration;
|
import net.osmand.router.RoutingConfiguration;
|
||||||
import net.osmand.router.RoutingConfiguration.Builder;
|
import net.osmand.router.RoutingConfiguration.Builder;
|
||||||
|
@ -148,7 +148,7 @@ public class OsmandApplication extends MultiDexApplication {
|
||||||
OsmandRegions regions;
|
OsmandRegions regions;
|
||||||
GeocodingLookupService geocodingLookupService;
|
GeocodingLookupService geocodingLookupService;
|
||||||
QuickSearchHelper searchUICore;
|
QuickSearchHelper searchUICore;
|
||||||
TravelDbHelper travelDbHelper;
|
TravelHelper travelHelper;
|
||||||
InAppPurchaseHelper inAppPurchaseHelper;
|
InAppPurchaseHelper inAppPurchaseHelper;
|
||||||
MapViewTrackingUtilities mapViewTrackingUtilities;
|
MapViewTrackingUtilities mapViewTrackingUtilities;
|
||||||
LockHelper lockHelper;
|
LockHelper lockHelper;
|
||||||
|
@ -481,8 +481,8 @@ public class OsmandApplication extends MultiDexApplication {
|
||||||
return searchUICore;
|
return searchUICore;
|
||||||
}
|
}
|
||||||
|
|
||||||
public TravelDbHelper getTravelDbHelper() {
|
public TravelHelper getTravelHelper() {
|
||||||
return travelDbHelper;
|
return travelHelper;
|
||||||
}
|
}
|
||||||
|
|
||||||
public InAppPurchaseHelper getInAppPurchaseHelper() {
|
public InAppPurchaseHelper getInAppPurchaseHelper() {
|
||||||
|
|
|
@ -76,6 +76,7 @@ import net.osmand.plus.views.layers.MapControlsLayer;
|
||||||
import net.osmand.plus.wikipedia.WikipediaDialogFragment;
|
import net.osmand.plus.wikipedia.WikipediaDialogFragment;
|
||||||
import net.osmand.plus.wikivoyage.WikivoyageWelcomeDialogFragment;
|
import net.osmand.plus.wikivoyage.WikivoyageWelcomeDialogFragment;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
||||||
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
import net.osmand.plus.wikivoyage.explore.WikivoyageExploreActivity;
|
import net.osmand.plus.wikivoyage.explore.WikivoyageExploreActivity;
|
||||||
import net.osmand.router.GeneralRouter;
|
import net.osmand.router.GeneralRouter;
|
||||||
import net.osmand.util.Algorithms;
|
import net.osmand.util.Algorithms;
|
||||||
|
@ -924,9 +925,9 @@ public class MapActivityActions implements DialogProvider {
|
||||||
@Override
|
@Override
|
||||||
public boolean onContextMenuClick(ArrayAdapter<ContextMenuItem> adapter, int itemId, int pos, boolean isChecked, int[] viewCoordinates) {
|
public boolean onContextMenuClick(ArrayAdapter<ContextMenuItem> adapter, int itemId, int pos, boolean isChecked, int[] viewCoordinates) {
|
||||||
MapActivity.clearPrevActivityIntent();
|
MapActivity.clearPrevActivityIntent();
|
||||||
TravelDbHelper travelDbHelper = getMyApplication().getTravelDbHelper();
|
TravelHelper travelHelper = getMyApplication().getTravelHelper();
|
||||||
travelDbHelper.initTravelBooks();
|
travelHelper.initTravelBooks();
|
||||||
if (travelDbHelper.getSelectedTravelBook() == null) {
|
if (travelHelper.getSelectedTravelBook() == null) {
|
||||||
WikivoyageWelcomeDialogFragment.showInstance(mapActivity.getSupportFragmentManager());
|
WikivoyageWelcomeDialogFragment.showInstance(mapActivity.getSupportFragmentManager());
|
||||||
} else {
|
} else {
|
||||||
Intent intent = new Intent(mapActivity, WikivoyageExploreActivity.class);
|
Intent intent = new Intent(mapActivity, WikivoyageExploreActivity.class);
|
||||||
|
|
|
@ -930,11 +930,21 @@ public class AudioVideoNotesPlugin extends OsmandPlugin {
|
||||||
stopRecording(activity, false);
|
stopRecording(activity, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void mapActivityResume(MapActivity activity) {
|
||||||
|
this.mapActivity = activity;
|
||||||
|
if (Build.VERSION.SDK_INT < 29) {
|
||||||
|
runAction(activity);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void mapActivityResumeOnTop(MapActivity activity) {
|
public void mapActivityResumeOnTop(MapActivity activity) {
|
||||||
this.mapActivity = activity;
|
this.mapActivity = activity;
|
||||||
// ((AudioManager) activity.getSystemService(Context.AUDIO_SERVICE)).registerMediaButtonEventReceiver(
|
runAction(activity);
|
||||||
// new ComponentName(activity, MediaRemoteControlReceiver.class));
|
}
|
||||||
|
|
||||||
|
private void runAction(MapActivity activity) {
|
||||||
if (runAction != -1) {
|
if (runAction != -1) {
|
||||||
takeAction(activity, actionLon, actionLat, runAction);
|
takeAction(activity, actionLon, actionLat, runAction);
|
||||||
runAction = -1;
|
runAction = -1;
|
||||||
|
|
|
@ -417,7 +417,9 @@ public class AvoidSpecificRoads {
|
||||||
AvoidRoadInfo other = (AvoidRoadInfo) obj;
|
AvoidRoadInfo other = (AvoidRoadInfo) obj;
|
||||||
return Math.abs(latitude - other.latitude) < 0.00001
|
return Math.abs(latitude - other.latitude) < 0.00001
|
||||||
&& Math.abs(longitude - other.longitude) < 0.00001
|
&& Math.abs(longitude - other.longitude) < 0.00001
|
||||||
&& Algorithms.objectEquals(name, other.name);
|
&& Algorithms.objectEquals(name, other.name)
|
||||||
|
&& Algorithms.objectEquals(appModeKey, other.appModeKey)
|
||||||
|
&& id == other.id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -14,6 +14,8 @@ import android.graphics.drawable.Drawable;
|
||||||
import android.graphics.drawable.GradientDrawable;
|
import android.graphics.drawable.GradientDrawable;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.AsyncTask;
|
import android.os.AsyncTask;
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.os.Looper;
|
||||||
import android.text.SpannableStringBuilder;
|
import android.text.SpannableStringBuilder;
|
||||||
import android.text.Spanned;
|
import android.text.Spanned;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
@ -27,14 +29,12 @@ import android.widget.ImageView;
|
||||||
import android.widget.LinearLayout;
|
import android.widget.LinearLayout;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.appcompat.app.AlertDialog;
|
import androidx.appcompat.app.AlertDialog;
|
||||||
import androidx.appcompat.view.ContextThemeWrapper;
|
import androidx.appcompat.view.ContextThemeWrapper;
|
||||||
import androidx.core.content.ContextCompat;
|
import androidx.core.content.ContextCompat;
|
||||||
import androidx.core.graphics.drawable.DrawableCompat;
|
import androidx.core.graphics.drawable.DrawableCompat;
|
||||||
|
|
||||||
import net.osmand.AndroidUtils;
|
import net.osmand.AndroidUtils;
|
||||||
import net.osmand.PlatformUtil;
|
import net.osmand.PlatformUtil;
|
||||||
import net.osmand.data.Amenity;
|
import net.osmand.data.Amenity;
|
||||||
|
@ -42,11 +42,7 @@ import net.osmand.data.LatLon;
|
||||||
import net.osmand.data.PointDescription;
|
import net.osmand.data.PointDescription;
|
||||||
import net.osmand.data.QuadRect;
|
import net.osmand.data.QuadRect;
|
||||||
import net.osmand.osm.io.NetworkUtils;
|
import net.osmand.osm.io.NetworkUtils;
|
||||||
import net.osmand.plus.OsmAndFormatter;
|
import net.osmand.plus.*;
|
||||||
import net.osmand.plus.OsmandApplication;
|
|
||||||
import net.osmand.plus.OsmandPlugin;
|
|
||||||
import net.osmand.plus.R;
|
|
||||||
import net.osmand.plus.UiUtilities;
|
|
||||||
import net.osmand.plus.activities.ActivityResultListener;
|
import net.osmand.plus.activities.ActivityResultListener;
|
||||||
import net.osmand.plus.activities.MapActivity;
|
import net.osmand.plus.activities.MapActivity;
|
||||||
import net.osmand.plus.helpers.FontCache;
|
import net.osmand.plus.helpers.FontCache;
|
||||||
|
@ -69,7 +65,6 @@ import net.osmand.plus.widgets.TextViewEx;
|
||||||
import net.osmand.plus.widgets.tools.ClickableSpanTouchListener;
|
import net.osmand.plus.widgets.tools.ClickableSpanTouchListener;
|
||||||
import net.osmand.util.Algorithms;
|
import net.osmand.util.Algorithms;
|
||||||
import net.osmand.util.MapUtils;
|
import net.osmand.util.MapUtils;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.openplacereviews.opendb.util.exception.FailedVerificationException;
|
import org.openplacereviews.opendb.util.exception.FailedVerificationException;
|
||||||
|
|
||||||
|
@ -77,13 +72,7 @@ import java.io.BufferedInputStream;
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.ByteArrayOutputStream;
|
import java.io.ByteArrayOutputStream;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.Comparator;
|
|
||||||
import java.util.LinkedList;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
import static net.osmand.plus.mapcontextmenu.builders.cards.ImageCard.GetImageCardsTask.GetImageCardsListener;
|
import static net.osmand.plus.mapcontextmenu.builders.cards.ImageCard.GetImageCardsTask.GetImageCardsListener;
|
||||||
|
|
||||||
|
@ -119,6 +108,8 @@ public class MenuBuilder {
|
||||||
private String preferredMapLang;
|
private String preferredMapLang;
|
||||||
private String preferredMapAppLang;
|
private String preferredMapAppLang;
|
||||||
private boolean transliterateNames;
|
private boolean transliterateNames;
|
||||||
|
private View view;
|
||||||
|
private View photoButton;
|
||||||
|
|
||||||
private final OpenDBAPI openDBAPI = new OpenDBAPI();
|
private final OpenDBAPI openDBAPI = new OpenDBAPI();
|
||||||
private String[] placeId = new String[0];
|
private String[] placeId = new String[0];
|
||||||
|
@ -131,6 +122,14 @@ public class MenuBuilder {
|
||||||
@Override
|
@Override
|
||||||
public void onPlaceIdAcquired(String[] placeId) {
|
public void onPlaceIdAcquired(String[] placeId) {
|
||||||
MenuBuilder.this.placeId = placeId;
|
MenuBuilder.this.placeId = placeId;
|
||||||
|
if (placeId.length < 2) {
|
||||||
|
app.runInUIThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
photoButton.setVisibility(View.GONE);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -239,6 +238,7 @@ public class MenuBuilder {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void build(View view) {
|
public void build(View view) {
|
||||||
|
this.view = view;
|
||||||
firstRow = true;
|
firstRow = true;
|
||||||
hidden = false;
|
hidden = false;
|
||||||
buildTopInternal(view);
|
buildTopInternal(view);
|
||||||
|
@ -412,7 +412,10 @@ public class MenuBuilder {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
//TODO This feature is under development
|
//TODO This feature is under development
|
||||||
view.setVisibility(View.VISIBLE);
|
if (!OsmandPlugin.isDevelopment()) {
|
||||||
|
view.setVisibility(View.GONE);
|
||||||
|
}
|
||||||
|
photoButton = view;
|
||||||
return view;
|
return view;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -430,7 +433,9 @@ public class MenuBuilder {
|
||||||
OnActivityResultListener() {
|
OnActivityResultListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onResult(int resultCode, Intent resultData) {
|
public void onResult(int resultCode, Intent resultData) {
|
||||||
handleSelectedImage(view, resultData.getData());
|
if (resultData != null) {
|
||||||
|
handleSelectedImage(view, resultData.getData());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
@ -443,10 +448,12 @@ public class MenuBuilder {
|
||||||
try {
|
try {
|
||||||
inputStream = app.getContentResolver().openInputStream(uri);
|
inputStream = app.getContentResolver().openInputStream(uri);
|
||||||
if (inputStream != null) {
|
if (inputStream != null) {
|
||||||
uploadImageToPlace(view, inputStream);
|
uploadImageToPlace(inputStream);
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOG.error(e);
|
LOG.error(e);
|
||||||
|
String str = app.getString(R.string.cannot_upload_image);
|
||||||
|
showToastMessage(str);
|
||||||
} finally {
|
} finally {
|
||||||
Algorithms.closeStream(inputStream);
|
Algorithms.closeStream(inputStream);
|
||||||
}
|
}
|
||||||
|
@ -455,7 +462,7 @@ public class MenuBuilder {
|
||||||
t.start();
|
t.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void uploadImageToPlace(View view, InputStream image) {
|
private void uploadImageToPlace(InputStream image) {
|
||||||
InputStream serverData = new ByteArrayInputStream(compressImage(image));
|
InputStream serverData = new ByteArrayInputStream(compressImage(image));
|
||||||
final String baseUrl = OPRWebviewActivity.getBaseUrl(app);
|
final String baseUrl = OPRWebviewActivity.getBaseUrl(app);
|
||||||
String url = baseUrl + "api/ipfs/image";
|
String url = baseUrl + "api/ipfs/image";
|
||||||
|
@ -463,26 +470,60 @@ public class MenuBuilder {
|
||||||
if (response != null) {
|
if (response != null) {
|
||||||
int res = 0;
|
int res = 0;
|
||||||
try {
|
try {
|
||||||
|
StringBuilder error = new StringBuilder();
|
||||||
res = openDBAPI.uploadImage(
|
res = openDBAPI.uploadImage(
|
||||||
placeId,
|
placeId,
|
||||||
baseUrl,
|
baseUrl,
|
||||||
OPRWebviewActivity.getPrivateKeyFromCookie(app),
|
OPRWebviewActivity.getPrivateKeyFromCookie(app),
|
||||||
OPRWebviewActivity.getUsernameFromCookie(app),
|
OPRWebviewActivity.getUsernameFromCookie(app),
|
||||||
response);
|
response, error);
|
||||||
|
if (res != 200) {
|
||||||
|
showToastMessage(error.toString());
|
||||||
|
} else {
|
||||||
|
//ok, continue
|
||||||
|
}
|
||||||
} catch (FailedVerificationException e) {
|
} catch (FailedVerificationException e) {
|
||||||
LOG.error(e);
|
LOG.error(e);
|
||||||
app.showToastMessage(R.string.cannot_upload_image);
|
checkTokenAndShowScreen();
|
||||||
}
|
}
|
||||||
if (res != 200) {
|
if (res != 200) {
|
||||||
//image was uploaded but not added to blockchain
|
//image was uploaded but not added to blockchain
|
||||||
app.showToastMessage(R.string.cannot_upload_image);
|
checkTokenAndShowScreen();
|
||||||
} else {
|
} else {
|
||||||
app.showToastMessage(R.string.successfully_uploaded_pattern, 1, 1);
|
String str = app.getString(R.string.successfully_uploaded_pattern, 1, 1);
|
||||||
|
showToastMessage(str);
|
||||||
//refresh the image
|
//refresh the image
|
||||||
execute(new GetImageCardsTask(mapActivity, getLatLon(), getAdditionalCardParams(), imageCardListener));
|
execute(new GetImageCardsTask(mapActivity, getLatLon(), getAdditionalCardParams(), imageCardListener));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
app.showToastMessage(R.string.cannot_upload_image);
|
checkTokenAndShowScreen();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showToastMessage(final String str) {
|
||||||
|
new Handler(Looper.getMainLooper()).post(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
Toast.makeText(mapActivity.getBaseContext(), str, Toast.LENGTH_LONG).show();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
//This method runs on non main thread
|
||||||
|
private void checkTokenAndShowScreen() {
|
||||||
|
final String baseUrl = OPRWebviewActivity.getBaseUrl(app);
|
||||||
|
final String name = OPRWebviewActivity.getUsernameFromCookie(app);
|
||||||
|
final String privateKey = OPRWebviewActivity.getPrivateKeyFromCookie(app);
|
||||||
|
if (openDBAPI.checkPrivateKeyValid(baseUrl, name, privateKey)) {
|
||||||
|
String str = app.getString(R.string.cannot_upload_image);
|
||||||
|
showToastMessage(str);
|
||||||
|
} else {
|
||||||
|
app.runInUIThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
OprStartFragment.showInstance(mapActivity.getSupportFragmentManager());
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1186,4 +1227,4 @@ public class MenuBuilder {
|
||||||
public static <P> void execute(AsyncTask<P, ?, ?> task, P... requests) {
|
public static <P> void execute(AsyncTask<P, ?, ?> task, P... requests) {
|
||||||
task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, requests);
|
task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, requests);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,7 +48,9 @@ import net.osmand.util.OpeningHoursParser;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
|
|
||||||
|
import java.io.UnsupportedEncodingException;
|
||||||
import java.math.RoundingMode;
|
import java.math.RoundingMode;
|
||||||
|
import java.net.URLDecoder;
|
||||||
import java.text.DecimalFormat;
|
import java.text.DecimalFormat;
|
||||||
import java.text.DecimalFormatSymbols;
|
import java.text.DecimalFormatSymbols;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -784,20 +786,29 @@ public class AmenityMenuBuilder extends MenuBuilder {
|
||||||
String wikidataValue = amenity.getAdditionalInfo(Amenity.WIKIDATA);
|
String wikidataValue = amenity.getAdditionalInfo(Amenity.WIKIDATA);
|
||||||
String wikimediaValue = amenity.getAdditionalInfo(Amenity.WIKIMEDIA_COMMONS);
|
String wikimediaValue = amenity.getAdditionalInfo(Amenity.WIKIMEDIA_COMMONS);
|
||||||
if (!Algorithms.isEmpty(imageValue)) {
|
if (!Algorithms.isEmpty(imageValue)) {
|
||||||
params.put("osm_image", imageValue);
|
params.put("osm_image", getDecodedAdditionalInfo(imageValue));
|
||||||
}
|
}
|
||||||
if (!Algorithms.isEmpty(mapillaryValue)) {
|
if (!Algorithms.isEmpty(mapillaryValue)) {
|
||||||
params.put("osm_mapillary_key", mapillaryValue);
|
params.put("osm_mapillary_key", getDecodedAdditionalInfo(mapillaryValue));
|
||||||
}
|
}
|
||||||
if (!Algorithms.isEmpty(wikidataValue)) {
|
if (!Algorithms.isEmpty(wikidataValue)) {
|
||||||
params.put(Amenity.WIKIDATA, wikidataValue);
|
params.put(Amenity.WIKIDATA, getDecodedAdditionalInfo(wikidataValue));
|
||||||
}
|
}
|
||||||
if (!Algorithms.isEmpty(wikimediaValue)) {
|
if (!Algorithms.isEmpty(wikimediaValue)) {
|
||||||
params.put(Amenity.WIKIMEDIA_COMMONS, wikimediaValue);
|
params.put(Amenity.WIKIMEDIA_COMMONS, getDecodedAdditionalInfo(wikimediaValue));
|
||||||
}
|
}
|
||||||
return params;
|
return params;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private String getDecodedAdditionalInfo(String additionalInfo) {
|
||||||
|
try {
|
||||||
|
return URLDecoder.decode(additionalInfo, "UTF-8");
|
||||||
|
} catch (UnsupportedEncodingException e) {
|
||||||
|
LOG.error(e);
|
||||||
|
}
|
||||||
|
return additionalInfo;
|
||||||
|
}
|
||||||
|
|
||||||
private CollapsableView getPoiTypeCollapsableView(final Context context, boolean collapsed,
|
private CollapsableView getPoiTypeCollapsableView(final Context context, boolean collapsed,
|
||||||
@NonNull final List<PoiType> categoryTypes,
|
@NonNull final List<PoiType> categoryTypes,
|
||||||
final boolean poiAdditional, AmenityInfoRow textRow) {
|
final boolean poiAdditional, AmenityInfoRow textRow) {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package net.osmand.plus.mapcontextmenu.builders.cards;
|
package net.osmand.plus.mapcontextmenu.builders.cards;
|
||||||
|
|
||||||
|
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import androidx.core.content.ContextCompat;
|
import androidx.core.content.ContextCompat;
|
||||||
import net.osmand.AndroidNetworkUtils;
|
|
||||||
import net.osmand.PlatformUtil;
|
import net.osmand.PlatformUtil;
|
||||||
import net.osmand.plus.R;
|
import net.osmand.plus.R;
|
||||||
import net.osmand.plus.activities.MapActivity;
|
import net.osmand.plus.activities.MapActivity;
|
||||||
|
@ -12,7 +12,6 @@ import org.json.JSONException;
|
||||||
import org.json.JSONObject;
|
import org.json.JSONObject;
|
||||||
|
|
||||||
public class IPFSImageCard extends ImageCard {
|
public class IPFSImageCard extends ImageCard {
|
||||||
private static final String BASE_URL = "https://test.openplacereviews.org/api/ipfs/image-ipfs?cid=";
|
|
||||||
private static final Log LOG = PlatformUtil.getLog(IPFSImageCard.class);
|
private static final Log LOG = PlatformUtil.getLog(IPFSImageCard.class);
|
||||||
|
|
||||||
public IPFSImageCard(MapActivity mapActivity, JSONObject imageObject) {
|
public IPFSImageCard(MapActivity mapActivity, JSONObject imageObject) {
|
||||||
|
@ -23,6 +22,7 @@ public class IPFSImageCard extends ImageCard {
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
LOG.error(e);
|
LOG.error(e);
|
||||||
}
|
}
|
||||||
|
String BASE_URL = mapActivity.getString(R.string.opr_base_url) + "api/ipfs/image-ipfs?cid=";
|
||||||
url = BASE_URL + cid;
|
url = BASE_URL + cid;
|
||||||
imageHiresUrl = BASE_URL + cid;
|
imageHiresUrl = BASE_URL + cid;
|
||||||
imageUrl = BASE_URL + cid;
|
imageUrl = BASE_URL + cid;
|
||||||
|
|
|
@ -27,6 +27,7 @@ import net.osmand.plus.R;
|
||||||
import net.osmand.plus.Version;
|
import net.osmand.plus.Version;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
||||||
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
import net.osmand.util.Algorithms;
|
import net.osmand.util.Algorithms;
|
||||||
import net.osmand.util.MapUtils;
|
import net.osmand.util.MapUtils;
|
||||||
|
|
||||||
|
@ -567,11 +568,11 @@ public class MapMarkersHelper {
|
||||||
@NonNull
|
@NonNull
|
||||||
public List<MapMarkersGroup> getGroupsForSavedArticlesTravelBook() {
|
public List<MapMarkersGroup> getGroupsForSavedArticlesTravelBook() {
|
||||||
List<MapMarkersGroup> res = new ArrayList<>();
|
List<MapMarkersGroup> res = new ArrayList<>();
|
||||||
TravelDbHelper travelDbHelper = ctx.getTravelDbHelper();
|
TravelHelper travelHelper = ctx.getTravelHelper();
|
||||||
if (travelDbHelper.getSelectedTravelBook() != null) {
|
if (travelHelper.getSelectedTravelBook() != null) {
|
||||||
List<TravelArticle> savedArticles = travelDbHelper.getLocalDataHelper().getSavedArticles();
|
List<TravelArticle> savedArticles = travelHelper.getLocalDataHelper().getSavedArticles();
|
||||||
for (TravelArticle art : savedArticles) {
|
for (TravelArticle art : savedArticles) {
|
||||||
String gpxName = travelDbHelper.getGPXName(art);
|
String gpxName = travelHelper.getGPXName(art);
|
||||||
File path = ctx.getAppPath(IndexConstants.GPX_TRAVEL_DIR + gpxName);
|
File path = ctx.getAppPath(IndexConstants.GPX_TRAVEL_DIR + gpxName);
|
||||||
LOG.debug("Article group " + path.getAbsolutePath() + " " + path.exists());
|
LOG.debug("Article group " + path.getAbsolutePath() + " " + path.exists());
|
||||||
MapMarkersGroup search = getMapMarkerGroupById(getMarkerGroupId(path), MapMarkersGroup.GPX_TYPE);
|
MapMarkersGroup search = getMapMarkerGroupById(getMarkerGroupId(path), MapMarkersGroup.GPX_TYPE);
|
||||||
|
|
|
@ -37,6 +37,7 @@ import net.osmand.plus.mapmarkers.SelectWptCategoriesBottomSheetDialogFragment;
|
||||||
import net.osmand.plus.wikivoyage.article.WikivoyageArticleDialogFragment;
|
import net.osmand.plus.wikivoyage.article.WikivoyageArticleDialogFragment;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
||||||
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
|
@ -163,11 +164,11 @@ public class MapMarkersGroupsAdapter extends RecyclerView.Adapter<RecyclerView.V
|
||||||
CategoriesSubHeader categoriesSubHeader = group.getCategoriesSubHeader();
|
CategoriesSubHeader categoriesSubHeader = group.getCategoriesSubHeader();
|
||||||
items.add(categoriesSubHeader);
|
items.add(categoriesSubHeader);
|
||||||
}
|
}
|
||||||
TravelDbHelper travelDbHelper = mapActivity.getMyApplication().getTravelDbHelper();
|
TravelHelper travelHelper = mapActivity.getMyApplication().getTravelHelper();
|
||||||
if (travelDbHelper.getSelectedTravelBook() != null) {
|
if (travelHelper.getSelectedTravelBook() != null) {
|
||||||
List<TravelArticle> savedArticles = travelDbHelper.getLocalDataHelper().getSavedArticles();
|
List<TravelArticle> savedArticles = travelHelper.getLocalDataHelper().getSavedArticles();
|
||||||
for (TravelArticle art : savedArticles) {
|
for (TravelArticle art : savedArticles) {
|
||||||
String gpxName = travelDbHelper.getGPXName(art);
|
String gpxName = travelHelper.getGPXName(art);
|
||||||
File path = mapActivity.getMyApplication().getAppPath(IndexConstants.GPX_TRAVEL_DIR + gpxName);
|
File path = mapActivity.getMyApplication().getAppPath(IndexConstants.GPX_TRAVEL_DIR + gpxName);
|
||||||
if (path.getAbsolutePath().equals(group.getGpxPath())) {
|
if (path.getAbsolutePath().equals(group.getGpxPath())) {
|
||||||
group.setWikivoyageArticle(art);
|
group.setWikivoyageArticle(art);
|
||||||
|
|
|
@ -486,7 +486,7 @@ public class TrackActivityFragmentAdapter implements TrackBitmapDrawerListener {
|
||||||
String title = metadata.getArticleTitle();
|
String title = metadata.getArticleTitle();
|
||||||
String lang = metadata.getArticleLang();
|
String lang = metadata.getArticleLang();
|
||||||
if (!TextUtils.isEmpty(title) && !TextUtils.isEmpty(lang)) {
|
if (!TextUtils.isEmpty(title) && !TextUtils.isEmpty(lang)) {
|
||||||
return app.getTravelDbHelper().getArticle(title, lang);
|
return app.getTravelHelper().getArticle(title, lang);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,19 +11,21 @@ import android.webkit.CookieManager;
|
||||||
import android.webkit.WebView;
|
import android.webkit.WebView;
|
||||||
import android.webkit.WebViewClient;
|
import android.webkit.WebViewClient;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.appcompat.widget.Toolbar;
|
import androidx.appcompat.widget.Toolbar;
|
||||||
import androidx.core.content.ContextCompat;
|
import androidx.core.content.ContextCompat;
|
||||||
|
|
||||||
import net.osmand.AndroidUtils;
|
import net.osmand.AndroidUtils;
|
||||||
import net.osmand.plus.OsmandApplication;
|
import net.osmand.plus.OsmandApplication;
|
||||||
import net.osmand.plus.R;
|
import net.osmand.plus.R;
|
||||||
import net.osmand.plus.activities.OsmandActionBarActivity;
|
import net.osmand.plus.activities.OsmandActionBarActivity;
|
||||||
import net.osmand.plus.settings.backend.OsmandSettings;
|
import net.osmand.plus.settings.backend.OsmandSettings;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public class OPRWebviewActivity extends OsmandActionBarActivity {
|
public class OPRWebviewActivity extends OsmandActionBarActivity {
|
||||||
public static final String KEY_LOGIN = "LOGIN_KEY";
|
public static final String KEY_LOGIN = "LOGIN_KEY";
|
||||||
public static String KEY_TITLE = "TITLE_KEY";
|
public static final String KEY_TITLE = "TITLE_KEY";
|
||||||
|
private static final String USER_AGENT = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko)";
|
||||||
private WebView webView;
|
private WebView webView;
|
||||||
private boolean isLogin = false;
|
private boolean isLogin = false;
|
||||||
|
|
||||||
|
@ -43,8 +45,13 @@ public class OPRWebviewActivity extends OsmandActionBarActivity {
|
||||||
return getBaseUrl(ctx) + "signup";
|
return getBaseUrl(ctx) + "signup";
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getFinishUrl(Context ctx) {
|
public static List<String> getFinishUrls(Context ctx) {
|
||||||
return getCookieUrl(ctx);
|
String googleOAuthFinishUrl = getBaseUrl(ctx) + "auth?code=4";
|
||||||
|
String profileUrl = getCookieUrl(ctx);
|
||||||
|
List<String> urls = new ArrayList<>();
|
||||||
|
urls.add(googleOAuthFinishUrl);
|
||||||
|
urls.add(profileUrl);
|
||||||
|
return urls;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onCreate(Bundle savedInstanceState) {
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
|
@ -76,6 +83,7 @@ public class OPRWebviewActivity extends OsmandActionBarActivity {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
webView = findViewById(R.id.printDialogWebview);
|
webView = findViewById(R.id.printDialogWebview);
|
||||||
|
webView.getSettings().setUserAgentString(USER_AGENT);
|
||||||
webView.setWebViewClient(new CloseOnSuccessWebViewClient());
|
webView.setWebViewClient(new CloseOnSuccessWebViewClient());
|
||||||
webView.getSettings().setJavaScriptEnabled(true);
|
webView.getSettings().setJavaScriptEnabled(true);
|
||||||
WebView.setWebContentsDebuggingEnabled(true);
|
WebView.setWebContentsDebuggingEnabled(true);
|
||||||
|
@ -124,8 +132,10 @@ public class OPRWebviewActivity extends OsmandActionBarActivity {
|
||||||
public class CloseOnSuccessWebViewClient extends WebViewClient {
|
public class CloseOnSuccessWebViewClient extends WebViewClient {
|
||||||
@Override
|
@Override
|
||||||
public void onPageFinished(WebView view, String url) {
|
public void onPageFinished(WebView view, String url) {
|
||||||
if (url.contains(getFinishUrl(OPRWebviewActivity.this)) && isLogin) {
|
for (String furl : getFinishUrls(OPRWebviewActivity.this)) {
|
||||||
finish();
|
if (url.contains(furl) && isLogin) {
|
||||||
|
finish();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
super.onPageFinished(view, url);
|
super.onPageFinished(view, url);
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@ import androidx.annotation.Nullable;
|
||||||
import androidx.fragment.app.FragmentActivity;
|
import androidx.fragment.app.FragmentActivity;
|
||||||
import androidx.fragment.app.FragmentManager;
|
import androidx.fragment.app.FragmentManager;
|
||||||
import net.osmand.PlatformUtil;
|
import net.osmand.PlatformUtil;
|
||||||
|
import net.osmand.plus.BuildConfig;
|
||||||
import net.osmand.plus.R;
|
import net.osmand.plus.R;
|
||||||
import net.osmand.plus.UiUtilities;
|
import net.osmand.plus.UiUtilities;
|
||||||
import net.osmand.plus.base.BaseOsmAndFragment;
|
import net.osmand.plus.base.BaseOsmAndFragment;
|
||||||
|
@ -74,7 +75,7 @@ public class OprStartFragment extends BaseOsmAndFragment {
|
||||||
private void setURLSpan(View v) {
|
private void setURLSpan(View v) {
|
||||||
String desc = requireContext().getString(R.string.register_on_openplacereviews_desc);
|
String desc = requireContext().getString(R.string.register_on_openplacereviews_desc);
|
||||||
SpannableString ss = new SpannableString(desc);
|
SpannableString ss = new SpannableString(desc);
|
||||||
ss.setSpan(new URLSpanNoUnderline("https://" + openPlaceReviewsUrl), desc.indexOf(openPlaceReviewsUrl),
|
ss.setSpan(new URLSpanNoUnderline(getActivity().getString(R.string.opr_base_url)), desc.indexOf(openPlaceReviewsUrl),
|
||||||
desc.indexOf(openPlaceReviewsUrl) + openPlaceReviewsUrl.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
|
desc.indexOf(openPlaceReviewsUrl) + openPlaceReviewsUrl.length(), Spanned.SPAN_INCLUSIVE_INCLUSIVE);
|
||||||
v.<TextView>findViewById(R.id.start_opr_description).setText(ss);
|
v.<TextView>findViewById(R.id.start_opr_description).setText(ss);
|
||||||
v.<TextView>findViewById(R.id.start_opr_description).setMovementMethod(LinkMovementMethod.getInstance());
|
v.<TextView>findViewById(R.id.start_opr_description).setMovementMethod(LinkMovementMethod.getInstance());
|
||||||
|
|
|
@ -68,7 +68,7 @@ public class OpenDBAPI {
|
||||||
response.toString().contains(LOGIN_SUCCESS_MESSAGE);
|
response.toString().contains(LOGIN_SUCCESS_MESSAGE);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int uploadImage(String[] placeId, String baseUrl, String privateKey, String username, String image) throws FailedVerificationException {
|
public int uploadImage(String[] placeId, String baseUrl, String privateKey, String username, String image, StringBuilder sb) throws FailedVerificationException {
|
||||||
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
|
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
|
||||||
Security.removeProvider("BC");
|
Security.removeProvider("BC");
|
||||||
Security.addProvider(new BouncyCastleProvider());
|
Security.addProvider(new BouncyCastleProvider());
|
||||||
|
@ -92,11 +92,9 @@ public class OpenDBAPI {
|
||||||
List<String> ids = new ArrayList<>(Arrays.asList(placeId));
|
List<String> ids = new ArrayList<>(Arrays.asList(placeId));
|
||||||
Map<String, Object> change = new TreeMap<>();
|
Map<String, Object> change = new TreeMap<>();
|
||||||
Map<String, Object> images = new TreeMap<>();
|
Map<String, Object> images = new TreeMap<>();
|
||||||
Map<String, Object> outdoor = new TreeMap<>();
|
images.put("append", imageMap);
|
||||||
outdoor.put("outdoor", imageResponseList);
|
|
||||||
images.put("append", outdoor);
|
|
||||||
change.put("version", "increment");
|
change.put("version", "increment");
|
||||||
change.put("images", images);
|
change.put("images.review", images);
|
||||||
edit.put("id", ids);
|
edit.put("id", ids);
|
||||||
edit.put("change", change);
|
edit.put("change", change);
|
||||||
edit.put("current", new Object());
|
edit.put("current", new Object());
|
||||||
|
@ -134,6 +132,7 @@ public class OpenDBAPI {
|
||||||
String strCurrentLine;
|
String strCurrentLine;
|
||||||
while ((strCurrentLine = br.readLine()) != null) {
|
while ((strCurrentLine = br.readLine()) != null) {
|
||||||
log.error(strCurrentLine);
|
log.error(strCurrentLine);
|
||||||
|
sb.append(strCurrentLine);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return rc;
|
return rc;
|
||||||
|
@ -149,4 +148,4 @@ public class OpenDBAPI {
|
||||||
public String cid;
|
public String cid;
|
||||||
public String extension;
|
public String extension;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -156,6 +156,7 @@ public class FollowTrackFragment extends ContextMenuScrollFragment implements Ca
|
||||||
if (view != null) {
|
if (view != null) {
|
||||||
ImageButton closeButton = view.findViewById(R.id.close_button);
|
ImageButton closeButton = view.findViewById(R.id.close_button);
|
||||||
buttonsShadow = view.findViewById(R.id.buttons_shadow);
|
buttonsShadow = view.findViewById(R.id.buttons_shadow);
|
||||||
|
sortButton = view.findViewById(R.id.sort_button);
|
||||||
closeButton.setImageDrawable(getContentIcon(AndroidUtils.getNavigationIconResId(app)));
|
closeButton.setImageDrawable(getContentIcon(AndroidUtils.getNavigationIconResId(app)));
|
||||||
closeButton.setOnClickListener(new View.OnClickListener() {
|
closeButton.setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -219,6 +220,7 @@ public class FollowTrackFragment extends ContextMenuScrollFragment implements Ca
|
||||||
if (Algorithms.isEmpty(fileName)) {
|
if (Algorithms.isEmpty(fileName)) {
|
||||||
fileName = app.getString(R.string.shared_string_gpx_track);
|
fileName = app.getString(R.string.shared_string_gpx_track);
|
||||||
}
|
}
|
||||||
|
sortButton.setVisibility(View.GONE);
|
||||||
GPXInfo gpxInfo = new GPXInfo(fileName, file != null ? file.lastModified() : 0, file != null ? file.length() : 0);
|
GPXInfo gpxInfo = new GPXInfo(fileName, file != null ? file.lastModified() : 0, file != null ? file.length() : 0);
|
||||||
TrackEditCard importTrackCard = new TrackEditCard(mapActivity, gpxInfo);
|
TrackEditCard importTrackCard = new TrackEditCard(mapActivity, gpxInfo);
|
||||||
importTrackCard.setListener(this);
|
importTrackCard.setListener(this);
|
||||||
|
@ -268,6 +270,7 @@ public class FollowTrackFragment extends ContextMenuScrollFragment implements Ca
|
||||||
tracksCard = new TracksToFollowCard(mapActivity, list, defaultCategory);
|
tracksCard = new TracksToFollowCard(mapActivity, list, defaultCategory);
|
||||||
tracksCard.setListener(FollowTrackFragment.this);
|
tracksCard.setListener(FollowTrackFragment.this);
|
||||||
getCardsContainer().addView(tracksCard.build(mapActivity));
|
getCardsContainer().addView(tracksCard.build(mapActivity));
|
||||||
|
sortButton.setVisibility(View.VISIBLE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,6 @@ public enum ExportSettingsType {
|
||||||
GLOBAL(R.string.general_settings_2, R.drawable.ic_action_settings),
|
GLOBAL(R.string.general_settings_2, R.drawable.ic_action_settings),
|
||||||
QUICK_ACTIONS(R.string.configure_screen_quick_action, R.drawable.ic_quick_action),
|
QUICK_ACTIONS(R.string.configure_screen_quick_action, R.drawable.ic_quick_action),
|
||||||
POI_TYPES(R.string.poi_dialog_poi_type, R.drawable.ic_action_info_dark),
|
POI_TYPES(R.string.poi_dialog_poi_type, R.drawable.ic_action_info_dark),
|
||||||
SEARCH_HISTORY(R.string.shared_string_search_history, R.drawable.ic_action_history),
|
|
||||||
AVOID_ROADS(R.string.avoid_road, R.drawable.ic_action_alert),
|
AVOID_ROADS(R.string.avoid_road, R.drawable.ic_action_alert),
|
||||||
FAVORITES(R.string.shared_string_favorites, R.drawable.ic_action_favorite),
|
FAVORITES(R.string.shared_string_favorites, R.drawable.ic_action_favorite),
|
||||||
TRACKS(R.string.shared_string_tracks, R.drawable.ic_action_route_distance),
|
TRACKS(R.string.shared_string_tracks, R.drawable.ic_action_route_distance),
|
||||||
|
@ -19,6 +18,7 @@ public enum ExportSettingsType {
|
||||||
MULTIMEDIA_NOTES(R.string.audionotes_plugin_name, R.drawable.ic_grouped_by_type),
|
MULTIMEDIA_NOTES(R.string.audionotes_plugin_name, R.drawable.ic_grouped_by_type),
|
||||||
ACTIVE_MARKERS(R.string.map_markers, R.drawable.ic_action_flag),
|
ACTIVE_MARKERS(R.string.map_markers, R.drawable.ic_action_flag),
|
||||||
HISTORY_MARKERS(R.string.markers_history, R.drawable.ic_action_flag),
|
HISTORY_MARKERS(R.string.markers_history, R.drawable.ic_action_flag),
|
||||||
|
SEARCH_HISTORY(R.string.shared_string_search_history, R.drawable.ic_action_history),
|
||||||
CUSTOM_RENDER_STYLE(R.string.shared_string_rendering_style, R.drawable.ic_action_map_style),
|
CUSTOM_RENDER_STYLE(R.string.shared_string_rendering_style, R.drawable.ic_action_map_style),
|
||||||
CUSTOM_ROUTING(R.string.shared_string_routing, R.drawable.ic_action_route_distance),
|
CUSTOM_ROUTING(R.string.shared_string_routing, R.drawable.ic_action_route_distance),
|
||||||
MAP_SOURCES(R.string.quick_action_map_source_title, R.drawable.ic_map),
|
MAP_SOURCES(R.string.quick_action_map_source_title, R.drawable.ic_map),
|
||||||
|
@ -48,12 +48,13 @@ public enum ExportSettingsType {
|
||||||
|
|
||||||
public boolean isSettingsCategory() {
|
public boolean isSettingsCategory() {
|
||||||
return this == PROFILE || this == GLOBAL || this == QUICK_ACTIONS || this == POI_TYPES
|
return this == PROFILE || this == GLOBAL || this == QUICK_ACTIONS || this == POI_TYPES
|
||||||
|| this == SEARCH_HISTORY || this == AVOID_ROADS;
|
|| this == AVOID_ROADS;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isMyPlacesCategory() {
|
public boolean isMyPlacesCategory() {
|
||||||
return this == FAVORITES || this == TRACKS || this == OSM_EDITS || this == OSM_NOTES
|
return this == FAVORITES || this == TRACKS || this == OSM_EDITS || this == OSM_NOTES
|
||||||
|| this == MULTIMEDIA_NOTES || this == ACTIVE_MARKERS || this == HISTORY_MARKERS;
|
|| this == MULTIMEDIA_NOTES || this == ACTIVE_MARKERS || this == HISTORY_MARKERS
|
||||||
|
|| this == SEARCH_HISTORY;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isResourcesCategory() {
|
public boolean isResourcesCategory() {
|
||||||
|
|
|
@ -68,13 +68,9 @@ public class AvoidRoadsSettingsItem extends CollectionSettingsItem<AvoidSpecific
|
||||||
if (!newItems.isEmpty() || !duplicateItems.isEmpty()) {
|
if (!newItems.isEmpty() || !duplicateItems.isEmpty()) {
|
||||||
appliedItems = new ArrayList<>(newItems);
|
appliedItems = new ArrayList<>(newItems);
|
||||||
for (AvoidSpecificRoads.AvoidRoadInfo duplicate : duplicateItems) {
|
for (AvoidSpecificRoads.AvoidRoadInfo duplicate : duplicateItems) {
|
||||||
if (shouldReplace) {
|
LatLon latLon = new LatLon(duplicate.latitude, duplicate.longitude);
|
||||||
LatLon latLon = new LatLon(duplicate.latitude, duplicate.longitude);
|
if (settings.removeImpassableRoad(latLon)) {
|
||||||
if (settings.removeImpassableRoad(latLon)) {
|
settings.addImpassableRoad(duplicate);
|
||||||
settings.addImpassableRoad(duplicate);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
settings.addImpassableRoad(renameItem(duplicate));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (AvoidSpecificRoads.AvoidRoadInfo avoidRoad : appliedItems) {
|
for (AvoidSpecificRoads.AvoidRoadInfo avoidRoad : appliedItems) {
|
||||||
|
@ -87,7 +83,12 @@ public class AvoidRoadsSettingsItem extends CollectionSettingsItem<AvoidSpecific
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isDuplicate(@NonNull AvoidSpecificRoads.AvoidRoadInfo item) {
|
public boolean isDuplicate(@NonNull AvoidSpecificRoads.AvoidRoadInfo item) {
|
||||||
return existingItems.contains(item);
|
for (AvoidSpecificRoads.AvoidRoadInfo roadInfo : existingItems) {
|
||||||
|
if (roadInfo.id == item.id) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -95,22 +96,15 @@ public class AvoidRoadsSettingsItem extends CollectionSettingsItem<AvoidSpecific
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean shouldShowDuplicates() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
@Override
|
@Override
|
||||||
public AvoidSpecificRoads.AvoidRoadInfo renameItem(@NonNull AvoidSpecificRoads.AvoidRoadInfo item) {
|
public AvoidSpecificRoads.AvoidRoadInfo renameItem(@NonNull AvoidSpecificRoads.AvoidRoadInfo item) {
|
||||||
int number = 0;
|
return item;
|
||||||
while (true) {
|
|
||||||
number++;
|
|
||||||
AvoidSpecificRoads.AvoidRoadInfo renamedItem = new AvoidSpecificRoads.AvoidRoadInfo();
|
|
||||||
renamedItem.name = item.name + "_" + number;
|
|
||||||
if (!isDuplicate(renamedItem)) {
|
|
||||||
renamedItem.id = item.id;
|
|
||||||
renamedItem.latitude = item.latitude;
|
|
||||||
renamedItem.longitude = item.longitude;
|
|
||||||
renamedItem.appModeKey = item.appModeKey;
|
|
||||||
return renamedItem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -126,8 +120,9 @@ public class AvoidRoadsSettingsItem extends CollectionSettingsItem<AvoidSpecific
|
||||||
double longitude = object.optDouble("longitude");
|
double longitude = object.optDouble("longitude");
|
||||||
String name = object.optString("name");
|
String name = object.optString("name");
|
||||||
String appModeKey = object.optString("appModeKey");
|
String appModeKey = object.optString("appModeKey");
|
||||||
|
long id = object.optLong("roadId");
|
||||||
AvoidSpecificRoads.AvoidRoadInfo roadInfo = new AvoidSpecificRoads.AvoidRoadInfo();
|
AvoidSpecificRoads.AvoidRoadInfo roadInfo = new AvoidSpecificRoads.AvoidRoadInfo();
|
||||||
roadInfo.id = 0;
|
roadInfo.id = id;
|
||||||
roadInfo.latitude = latitude;
|
roadInfo.latitude = latitude;
|
||||||
roadInfo.longitude = longitude;
|
roadInfo.longitude = longitude;
|
||||||
roadInfo.name = name;
|
roadInfo.name = name;
|
||||||
|
@ -155,6 +150,7 @@ public class AvoidRoadsSettingsItem extends CollectionSettingsItem<AvoidSpecific
|
||||||
jsonObject.put("longitude", avoidRoad.longitude);
|
jsonObject.put("longitude", avoidRoad.longitude);
|
||||||
jsonObject.put("name", avoidRoad.name);
|
jsonObject.put("name", avoidRoad.name);
|
||||||
jsonObject.put("appModeKey", avoidRoad.appModeKey);
|
jsonObject.put("appModeKey", avoidRoad.appModeKey);
|
||||||
|
jsonObject.put("roadId", avoidRoad.id);
|
||||||
jsonArray.put(jsonObject);
|
jsonArray.put(jsonObject);
|
||||||
}
|
}
|
||||||
json.put("items", jsonArray);
|
json.put("items", jsonArray);
|
||||||
|
|
|
@ -19,6 +19,7 @@ import java.io.FileOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
|
import java.util.zip.ZipEntry;
|
||||||
import java.util.zip.ZipOutputStream;
|
import java.util.zip.ZipOutputStream;
|
||||||
|
|
||||||
public class FileSettingsItem extends StreamSettingsItem {
|
public class FileSettingsItem extends StreamSettingsItem {
|
||||||
|
@ -131,6 +132,7 @@ public class FileSettingsItem extends StreamSettingsItem {
|
||||||
private final File appPath;
|
private final File appPath;
|
||||||
protected FileSubtype subtype;
|
protected FileSubtype subtype;
|
||||||
private long size;
|
private long size;
|
||||||
|
private long lastModified;
|
||||||
|
|
||||||
public FileSettingsItem(@NonNull OsmandApplication app, @NonNull File file) throws IllegalArgumentException {
|
public FileSettingsItem(@NonNull OsmandApplication app, @NonNull File file) throws IllegalArgumentException {
|
||||||
super(app, file.getPath().replace(app.getAppPath(null).getPath(), ""));
|
super(app, file.getPath().replace(app.getAppPath(null).getPath(), ""));
|
||||||
|
@ -222,6 +224,14 @@ public class FileSettingsItem extends StreamSettingsItem {
|
||||||
this.size = size;
|
this.size = size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long getLastModified() {
|
||||||
|
return lastModified;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLastModified(long lastModified) {
|
||||||
|
this.lastModified = lastModified;
|
||||||
|
}
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
public File getFile() {
|
public File getFile() {
|
||||||
return file;
|
return file;
|
||||||
|
@ -292,6 +302,9 @@ public class FileSettingsItem extends StreamSettingsItem {
|
||||||
} finally {
|
} finally {
|
||||||
Algorithms.closeStream(output);
|
Algorithms.closeStream(output);
|
||||||
}
|
}
|
||||||
|
if (lastModified != -1) {
|
||||||
|
dest.setLastModified(lastModified);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -306,7 +319,14 @@ public class FileSettingsItem extends StreamSettingsItem {
|
||||||
warnings.add(app.getString(R.string.settings_item_read_error, file.getName()));
|
warnings.add(app.getString(R.string.settings_item_read_error, file.getName()));
|
||||||
SettingsHelper.LOG.error("Failed to set input stream from file: " + file.getName(), e);
|
SettingsHelper.LOG.error("Failed to set input stream from file: " + file.getName(), e);
|
||||||
}
|
}
|
||||||
return super.getWriter();
|
return new StreamSettingsItemWriter(this) {
|
||||||
|
@Override
|
||||||
|
public ZipEntry createNewEntry(String fileName) {
|
||||||
|
ZipEntry entry = super.createNewEntry(fileName);
|
||||||
|
entry.setTime(file.lastModified());
|
||||||
|
return entry;
|
||||||
|
}
|
||||||
|
};
|
||||||
} else {
|
} else {
|
||||||
return new StreamSettingsItemWriter(this) {
|
return new StreamSettingsItemWriter(this) {
|
||||||
|
|
||||||
|
|
|
@ -539,10 +539,6 @@ public class SettingsHelper {
|
||||||
if (!poiList.isEmpty()) {
|
if (!poiList.isEmpty()) {
|
||||||
settingsItems.put(ExportSettingsType.POI_TYPES, poiList);
|
settingsItems.put(ExportSettingsType.POI_TYPES, poiList);
|
||||||
}
|
}
|
||||||
List<HistoryEntry> historyEntries = SearchHistoryHelper.getInstance(app).getHistoryEntries(false);
|
|
||||||
if (!historyEntries.isEmpty()) {
|
|
||||||
settingsItems.put(ExportSettingsType.SEARCH_HISTORY, historyEntries);
|
|
||||||
}
|
|
||||||
Map<LatLon, AvoidRoadInfo> impassableRoads = app.getAvoidSpecificRoads().getImpassableRoads();
|
Map<LatLon, AvoidRoadInfo> impassableRoads = app.getAvoidSpecificRoads().getImpassableRoads();
|
||||||
if (!impassableRoads.isEmpty()) {
|
if (!impassableRoads.isEmpty()) {
|
||||||
settingsItems.put(ExportSettingsType.AVOID_ROADS, new ArrayList<>(impassableRoads.values()));
|
settingsItems.put(ExportSettingsType.AVOID_ROADS, new ArrayList<>(impassableRoads.values()));
|
||||||
|
@ -611,6 +607,10 @@ public class SettingsHelper {
|
||||||
markersGroup.setMarkers(markersHistory);
|
markersGroup.setMarkers(markersHistory);
|
||||||
myPlacesItems.put(ExportSettingsType.HISTORY_MARKERS, Collections.singletonList(markersGroup));
|
myPlacesItems.put(ExportSettingsType.HISTORY_MARKERS, Collections.singletonList(markersGroup));
|
||||||
}
|
}
|
||||||
|
List<HistoryEntry> historyEntries = SearchHistoryHelper.getInstance(app).getHistoryEntries(false);
|
||||||
|
if (!historyEntries.isEmpty()) {
|
||||||
|
myPlacesItems.put(ExportSettingsType.SEARCH_HISTORY, historyEntries);
|
||||||
|
}
|
||||||
return myPlacesItems;
|
return myPlacesItems;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -829,10 +829,10 @@ public class SettingsHelper {
|
||||||
List<File> routingFilesList = new ArrayList<>();
|
List<File> routingFilesList = new ArrayList<>();
|
||||||
List<File> renderFilesList = new ArrayList<>();
|
List<File> renderFilesList = new ArrayList<>();
|
||||||
List<File> multimediaFilesList = new ArrayList<>();
|
List<File> multimediaFilesList = new ArrayList<>();
|
||||||
List<File> tracksFilesList = new ArrayList<>();
|
|
||||||
List<File> ttsVoiceFilesList = new ArrayList<>();
|
List<File> ttsVoiceFilesList = new ArrayList<>();
|
||||||
List<File> voiceFilesList = new ArrayList<>();
|
List<File> voiceFilesList = new ArrayList<>();
|
||||||
List<FileSettingsItem> mapFilesList = new ArrayList<>();
|
List<FileSettingsItem> mapFilesList = new ArrayList<>();
|
||||||
|
List<FileSettingsItem> tracksFilesList = new ArrayList<>();
|
||||||
List<AvoidRoadInfo> avoidRoads = new ArrayList<>();
|
List<AvoidRoadInfo> avoidRoads = new ArrayList<>();
|
||||||
List<GlobalSettingsItem> globalSettingsItems = new ArrayList<>();
|
List<GlobalSettingsItem> globalSettingsItems = new ArrayList<>();
|
||||||
List<OsmNotesPoint> notesPointList = new ArrayList<>();
|
List<OsmNotesPoint> notesPointList = new ArrayList<>();
|
||||||
|
@ -856,7 +856,7 @@ public class SettingsHelper {
|
||||||
} else if (fileItem.getSubtype() == FileSubtype.MULTIMEDIA_NOTES) {
|
} else if (fileItem.getSubtype() == FileSubtype.MULTIMEDIA_NOTES) {
|
||||||
multimediaFilesList.add(fileItem.getFile());
|
multimediaFilesList.add(fileItem.getFile());
|
||||||
} else if (fileItem.getSubtype() == FileSubtype.GPX) {
|
} else if (fileItem.getSubtype() == FileSubtype.GPX) {
|
||||||
tracksFilesList.add(fileItem.getFile());
|
tracksFilesList.add(fileItem);
|
||||||
} else if (fileItem.getSubtype().isMap()) {
|
} else if (fileItem.getSubtype().isMap()) {
|
||||||
mapFilesList.add(fileItem);
|
mapFilesList.add(fileItem);
|
||||||
} else if (fileItem.getSubtype() == FileSubtype.TTS_VOICE) {
|
} else if (fileItem.getSubtype() == FileSubtype.TTS_VOICE) {
|
||||||
|
|
|
@ -60,7 +60,7 @@ class SettingsImporter {
|
||||||
try {
|
try {
|
||||||
SettingsItemsFactory itemsFactory = new SettingsItemsFactory(app, itemsJson);
|
SettingsItemsFactory itemsFactory = new SettingsItemsFactory(app, itemsJson);
|
||||||
List<SettingsItem> settingsItemList = itemsFactory.getItems();
|
List<SettingsItem> settingsItemList = itemsFactory.getItems();
|
||||||
getFilesSize(file, settingsItemList);
|
updateFilesInfo(file, settingsItemList);
|
||||||
items.addAll(settingsItemList);
|
items.addAll(settingsItemList);
|
||||||
} catch (IllegalArgumentException e) {
|
} catch (IllegalArgumentException e) {
|
||||||
SettingsHelper.LOG.error("Error parsing items: " + itemsJson, e);
|
SettingsHelper.LOG.error("Error parsing items: " + itemsJson, e);
|
||||||
|
@ -81,7 +81,7 @@ class SettingsImporter {
|
||||||
return items;
|
return items;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void getFilesSize(@NonNull File file, List<SettingsItem> settingsItemList) throws IOException {
|
private void updateFilesInfo(@NonNull File file, List<SettingsItem> settingsItemList) throws IOException {
|
||||||
ZipFile zipfile = new ZipFile(file.getPath());
|
ZipFile zipfile = new ZipFile(file.getPath());
|
||||||
Enumeration<? extends ZipEntry> zipEnum = zipfile.entries();
|
Enumeration<? extends ZipEntry> zipEnum = zipfile.entries();
|
||||||
while (zipEnum.hasMoreElements()) {
|
while (zipEnum.hasMoreElements()) {
|
||||||
|
@ -90,7 +90,9 @@ class SettingsImporter {
|
||||||
for (SettingsItem settingsItem : settingsItemList) {
|
for (SettingsItem settingsItem : settingsItemList) {
|
||||||
if (settingsItem instanceof FileSettingsItem
|
if (settingsItem instanceof FileSettingsItem
|
||||||
&& zipEntry.getName().equals(settingsItem.getFileName())) {
|
&& zipEntry.getName().equals(settingsItem.getFileName())) {
|
||||||
((FileSettingsItem) settingsItem).setSize(size);
|
FileSettingsItem fileSettingsItem = (FileSettingsItem) settingsItem;
|
||||||
|
fileSettingsItem.setSize(size);
|
||||||
|
fileSettingsItem.setLastModified(zipEntry.getTime());
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,9 +22,13 @@ public abstract class SettingsItemWriter<T extends SettingsItem> {
|
||||||
public abstract boolean writeToStream(@NonNull OutputStream outputStream) throws IOException;
|
public abstract boolean writeToStream(@NonNull OutputStream outputStream) throws IOException;
|
||||||
|
|
||||||
public void writeEntry(String fileName, @NonNull ZipOutputStream zos) throws IOException {
|
public void writeEntry(String fileName, @NonNull ZipOutputStream zos) throws IOException {
|
||||||
ZipEntry entry = new ZipEntry(fileName);
|
ZipEntry entry = createNewEntry(fileName);
|
||||||
zos.putNextEntry(entry);
|
zos.putNextEntry(entry);
|
||||||
writeToStream(zos);
|
writeToStream(zos);
|
||||||
zos.closeEntry();
|
zos.closeEntry();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ZipEntry createNewEntry(String fileName) {
|
||||||
|
return new ZipEntry(fileName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,15 +2,14 @@ package net.osmand.plus.settings.fragments;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.DialogInterface;
|
import android.content.DialogInterface;
|
||||||
import android.os.Build;
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.view.ViewTreeObserver;
|
|
||||||
import android.widget.ExpandableListView;
|
import android.widget.ExpandableListView;
|
||||||
import android.widget.LinearLayout;
|
import android.widget.LinearLayout;
|
||||||
|
|
||||||
|
import androidx.activity.OnBackPressedCallback;
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.appcompat.app.AlertDialog;
|
import androidx.appcompat.app.AlertDialog;
|
||||||
|
@ -31,6 +30,7 @@ import net.osmand.plus.settings.backend.ExportSettingsCategory;
|
||||||
import net.osmand.plus.settings.backend.ExportSettingsType;
|
import net.osmand.plus.settings.backend.ExportSettingsType;
|
||||||
import net.osmand.plus.settings.fragments.ExportSettingsAdapter.OnItemSelectedListener;
|
import net.osmand.plus.settings.fragments.ExportSettingsAdapter.OnItemSelectedListener;
|
||||||
import net.osmand.plus.widgets.TextViewEx;
|
import net.osmand.plus.widgets.TextViewEx;
|
||||||
|
import net.osmand.util.Algorithms;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -60,6 +60,7 @@ public abstract class BaseSettingsListFragment extends BaseOsmAndFragment implem
|
||||||
protected ExpandableListView expandableList;
|
protected ExpandableListView expandableList;
|
||||||
protected ExportSettingsAdapter adapter;
|
protected ExportSettingsAdapter adapter;
|
||||||
|
|
||||||
|
protected boolean exportMode;
|
||||||
protected boolean nightMode;
|
protected boolean nightMode;
|
||||||
private boolean wasDrawerDisabled;
|
private boolean wasDrawerDisabled;
|
||||||
|
|
||||||
|
@ -73,6 +74,17 @@ public abstract class BaseSettingsListFragment extends BaseOsmAndFragment implem
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
app = requireMyApplication();
|
app = requireMyApplication();
|
||||||
nightMode = !app.getSettings().isLightContent();
|
nightMode = !app.getSettings().isLightContent();
|
||||||
|
|
||||||
|
requireActivity().getOnBackPressedDispatcher().addCallback(this, new OnBackPressedCallback(true) {
|
||||||
|
@Override
|
||||||
|
public void handleOnBackPressed() {
|
||||||
|
if (hasSelectedData()) {
|
||||||
|
showExitDialog();
|
||||||
|
} else {
|
||||||
|
dismissFragment();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
|
@ -101,26 +113,15 @@ public abstract class BaseSettingsListFragment extends BaseOsmAndFragment implem
|
||||||
|
|
||||||
continueBtn = root.findViewById(R.id.continue_button);
|
continueBtn = root.findViewById(R.id.continue_button);
|
||||||
UiUtilities.setupDialogButton(nightMode, continueBtn, DialogButtonType.PRIMARY, getString(R.string.shared_string_continue));
|
UiUtilities.setupDialogButton(nightMode, continueBtn, DialogButtonType.PRIMARY, getString(R.string.shared_string_continue));
|
||||||
continueBtn.setOnClickListener(new View.OnClickListener() {
|
root.findViewById(R.id.continue_button_container).setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
onContinueButtonClickAction();
|
if (expandableList.getHeaderViewsCount() <= 1) {
|
||||||
}
|
if (hasSelectedData()) {
|
||||||
});
|
onContinueButtonClickAction();
|
||||||
|
|
||||||
ViewTreeObserver treeObserver = buttonsContainer.getViewTreeObserver();
|
|
||||||
treeObserver.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
|
|
||||||
@Override
|
|
||||||
public void onGlobalLayout() {
|
|
||||||
if (buttonsContainer != null) {
|
|
||||||
ViewTreeObserver vts = buttonsContainer.getViewTreeObserver();
|
|
||||||
int height = buttonsContainer.getMeasuredHeight();
|
|
||||||
expandableList.setPadding(0, 0, 0, height);
|
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
|
||||||
vts.removeOnGlobalLayoutListener(this);
|
|
||||||
} else {
|
|
||||||
vts.removeGlobalOnLayoutListener(this);
|
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
expandableList.smoothScrollToPosition(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -185,7 +186,11 @@ public abstract class BaseSettingsListFragment extends BaseOsmAndFragment implem
|
||||||
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
|
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
showExitDialog();
|
if (hasSelectedData()) {
|
||||||
|
showExitDialog();
|
||||||
|
} else {
|
||||||
|
dismissFragment();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -204,16 +209,25 @@ public abstract class BaseSettingsListFragment extends BaseOsmAndFragment implem
|
||||||
continueBtn.setEnabled(false);
|
continueBtn.setEnabled(false);
|
||||||
} else {
|
} else {
|
||||||
updateWarningHeaderVisibility(false);
|
updateWarningHeaderVisibility(false);
|
||||||
continueBtn.setEnabled(adapter.hasSelectedData());
|
continueBtn.setEnabled(hasSelectedData());
|
||||||
}
|
}
|
||||||
itemsSizeContainer.setVisibility(View.VISIBLE);
|
itemsSizeContainer.setVisibility(View.VISIBLE);
|
||||||
} else {
|
} else {
|
||||||
updateWarningHeaderVisibility(false);
|
updateWarningHeaderVisibility(false);
|
||||||
itemsSizeContainer.setVisibility(View.INVISIBLE);
|
itemsSizeContainer.setVisibility(View.INVISIBLE);
|
||||||
continueBtn.setEnabled(adapter.hasSelectedData());
|
continueBtn.setEnabled(hasSelectedData());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean hasSelectedData() {
|
||||||
|
for (List<?> items : selectedItemsMap.values()) {
|
||||||
|
if (!Algorithms.isEmpty(items)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private void updateWarningHeaderVisibility(boolean visible) {
|
private void updateWarningHeaderVisibility(boolean visible) {
|
||||||
if (visible) {
|
if (visible) {
|
||||||
if (expandableList.getHeaderViewsCount() < 2) {
|
if (expandableList.getHeaderViewsCount() < 2) {
|
||||||
|
@ -255,13 +269,24 @@ public abstract class BaseSettingsListFragment extends BaseOsmAndFragment implem
|
||||||
updateAvailableSpace();
|
updateAvailableSpace();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected List<Object> getItemsForType(ExportSettingsType type) {
|
||||||
|
for (SettingsCategoryItems categoryItems : dataList.values()) {
|
||||||
|
if (categoryItems.getTypes().contains(type)) {
|
||||||
|
return (List<Object>) categoryItems.getItemsForType(type);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected List<Object> getSelectedItemsForType(ExportSettingsType type) {
|
||||||
|
return (List<Object>) selectedItemsMap.get(type);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onTypeClicked(ExportSettingsCategory category, ExportSettingsType type) {
|
public void onTypeClicked(ExportSettingsType type) {
|
||||||
FragmentManager fragmentManager = getFragmentManager();
|
FragmentManager fragmentManager = getFragmentManager();
|
||||||
if (fragmentManager != null && type != ExportSettingsType.GLOBAL && type != ExportSettingsType.SEARCH_HISTORY) {
|
if (fragmentManager != null && type != ExportSettingsType.GLOBAL && type != ExportSettingsType.SEARCH_HISTORY) {
|
||||||
List<Object> items = (List<Object>) dataList.get(category).getItemsForType(type);
|
ExportItemsBottomSheet.showInstance(fragmentManager, type, this, exportMode);
|
||||||
List<Object> selectedItems = (List<Object>) selectedItemsMap.get(type);
|
|
||||||
ExportItemsBottomSheet.showInstance(type, selectedItems, items, fragmentManager, this);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -14,11 +14,15 @@ import androidx.fragment.app.Fragment;
|
||||||
import androidx.fragment.app.FragmentManager;
|
import androidx.fragment.app.FragmentManager;
|
||||||
|
|
||||||
import net.osmand.AndroidUtils;
|
import net.osmand.AndroidUtils;
|
||||||
|
import net.osmand.GPXUtilities.GPXTrackAnalysis;
|
||||||
import net.osmand.IndexConstants;
|
import net.osmand.IndexConstants;
|
||||||
import net.osmand.PlatformUtil;
|
import net.osmand.PlatformUtil;
|
||||||
import net.osmand.map.ITileSource;
|
import net.osmand.map.ITileSource;
|
||||||
import net.osmand.map.TileSourceManager.TileSourceTemplate;
|
import net.osmand.map.TileSourceManager.TileSourceTemplate;
|
||||||
import net.osmand.plus.FavouritesDbHelper.FavoriteGroup;
|
import net.osmand.plus.FavouritesDbHelper.FavoriteGroup;
|
||||||
|
import net.osmand.plus.GPXDatabase.GpxDataItem;
|
||||||
|
import net.osmand.plus.GpxDbHelper.GpxDataItemCallback;
|
||||||
|
import net.osmand.plus.OsmAndFormatter;
|
||||||
import net.osmand.plus.OsmandApplication;
|
import net.osmand.plus.OsmandApplication;
|
||||||
import net.osmand.plus.R;
|
import net.osmand.plus.R;
|
||||||
import net.osmand.plus.SQLiteTileSource;
|
import net.osmand.plus.SQLiteTileSource;
|
||||||
|
@ -28,6 +32,7 @@ import net.osmand.plus.base.MenuBottomSheetDialogFragment;
|
||||||
import net.osmand.plus.base.bottomsheetmenu.BaseBottomSheetItem;
|
import net.osmand.plus.base.bottomsheetmenu.BaseBottomSheetItem;
|
||||||
import net.osmand.plus.base.bottomsheetmenu.BottomSheetItemWithCompoundButton;
|
import net.osmand.plus.base.bottomsheetmenu.BottomSheetItemWithCompoundButton;
|
||||||
import net.osmand.plus.base.bottomsheetmenu.BottomSheetItemWithCompoundButton.Builder;
|
import net.osmand.plus.base.bottomsheetmenu.BottomSheetItemWithCompoundButton.Builder;
|
||||||
|
import net.osmand.plus.base.bottomsheetmenu.BottomSheetItemWithDescription;
|
||||||
import net.osmand.plus.base.bottomsheetmenu.SimpleBottomSheetItem;
|
import net.osmand.plus.base.bottomsheetmenu.SimpleBottomSheetItem;
|
||||||
import net.osmand.plus.base.bottomsheetmenu.simpleitems.SimpleDividerItem;
|
import net.osmand.plus.base.bottomsheetmenu.simpleitems.SimpleDividerItem;
|
||||||
import net.osmand.plus.helpers.AvoidSpecificRoads.AvoidRoadInfo;
|
import net.osmand.plus.helpers.AvoidSpecificRoads.AvoidRoadInfo;
|
||||||
|
@ -47,6 +52,7 @@ import net.osmand.plus.settings.backend.ApplicationMode;
|
||||||
import net.osmand.plus.settings.backend.ApplicationMode.ApplicationModeBean;
|
import net.osmand.plus.settings.backend.ApplicationMode.ApplicationModeBean;
|
||||||
import net.osmand.plus.settings.backend.ExportSettingsType;
|
import net.osmand.plus.settings.backend.ExportSettingsType;
|
||||||
import net.osmand.plus.settings.backend.backup.FileSettingsItem;
|
import net.osmand.plus.settings.backend.backup.FileSettingsItem;
|
||||||
|
import net.osmand.plus.settings.backend.backup.FileSettingsItem.FileSubtype;
|
||||||
import net.osmand.plus.settings.backend.backup.GlobalSettingsItem;
|
import net.osmand.plus.settings.backend.backup.GlobalSettingsItem;
|
||||||
import net.osmand.plus.settings.fragments.ExportSettingsAdapter.OnItemSelectedListener;
|
import net.osmand.plus.settings.fragments.ExportSettingsAdapter.OnItemSelectedListener;
|
||||||
import net.osmand.util.Algorithms;
|
import net.osmand.util.Algorithms;
|
||||||
|
@ -67,18 +73,43 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
public static final String TAG = ExportItemsBottomSheet.class.getSimpleName();
|
public static final String TAG = ExportItemsBottomSheet.class.getSimpleName();
|
||||||
private static final Log LOG = PlatformUtil.getLog(ExportItemsBottomSheet.class);
|
private static final Log LOG = PlatformUtil.getLog(ExportItemsBottomSheet.class);
|
||||||
|
|
||||||
|
private static final String SETTINGS_TYPE_KEY = "settings_type_key";
|
||||||
|
private static final String EXPORT_MODE_KEY = "export_mode_key";
|
||||||
|
|
||||||
private OsmandApplication app;
|
private OsmandApplication app;
|
||||||
private UiUtilities uiUtilities;
|
private UiUtilities uiUtilities;
|
||||||
|
|
||||||
private ExportSettingsType type;
|
private ExportSettingsType type;
|
||||||
private List<Object> allItems;
|
private final List<Object> allItems = new ArrayList<>();
|
||||||
private List<Object> selectedItems = new ArrayList<>();
|
private final List<Object> selectedItems = new ArrayList<>();
|
||||||
|
|
||||||
private TextView selectedSize;
|
private TextView selectedSize;
|
||||||
private ThreeStateCheckbox checkBox;
|
private ThreeStateCheckbox checkBox;
|
||||||
|
|
||||||
private int activeColorRes;
|
private int activeColorRes;
|
||||||
private int secondaryColorRes;
|
private int secondaryColorRes;
|
||||||
|
private boolean exportMode;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
if (savedInstanceState != null) {
|
||||||
|
exportMode = savedInstanceState.getBoolean(EXPORT_MODE_KEY);
|
||||||
|
type = ExportSettingsType.valueOf(savedInstanceState.getString(SETTINGS_TYPE_KEY));
|
||||||
|
}
|
||||||
|
Fragment target = getTargetFragment();
|
||||||
|
if (target instanceof BaseSettingsListFragment) {
|
||||||
|
BaseSettingsListFragment fragment = (BaseSettingsListFragment) target;
|
||||||
|
List<Object> items = fragment.getItemsForType(type);
|
||||||
|
if (items != null) {
|
||||||
|
allItems.addAll(items);
|
||||||
|
}
|
||||||
|
List<Object> selectedItemsForType = fragment.getSelectedItemsForType(type);
|
||||||
|
if (selectedItemsForType != null) {
|
||||||
|
selectedItems.addAll(selectedItemsForType);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void createMenuItems(Bundle savedInstanceState) {
|
public void createMenuItems(Bundle savedInstanceState) {
|
||||||
|
@ -111,11 +142,18 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
})
|
})
|
||||||
.setTag(object);
|
.setTag(object);
|
||||||
setupBottomSheetItem(builder, object);
|
setupBottomSheetItem(builder, object);
|
||||||
item[0] = (BottomSheetItemWithCompoundButton) builder.create();
|
item[0] = builder.create();
|
||||||
items.add(item[0]);
|
items.add(item[0]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSaveInstanceState(Bundle outState) {
|
||||||
|
super.onSaveInstanceState(outState);
|
||||||
|
outState.putBoolean(EXPORT_MODE_KEY, exportMode);
|
||||||
|
outState.putString(SETTINGS_TYPE_KEY, type.name());
|
||||||
|
}
|
||||||
|
|
||||||
private BaseBottomSheetItem createTitleItem() {
|
private BaseBottomSheetItem createTitleItem() {
|
||||||
LayoutInflater themedInflater = UiUtilities.getInflater(requireContext(), nightMode);
|
LayoutInflater themedInflater = UiUtilities.getInflater(requireContext(), nightMode);
|
||||||
View view = themedInflater.inflate(R.layout.settings_group_title, null);
|
View view = themedInflater.inflate(R.layout.settings_group_title, null);
|
||||||
|
@ -153,7 +191,30 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
int checkBoxColor = checkBox.getState() == UNCHECKED ? secondaryColorRes : activeColorRes;
|
int checkBoxColor = checkBox.getState() == UNCHECKED ? secondaryColorRes : activeColorRes;
|
||||||
CompoundButtonCompat.setButtonTintList(checkBox, ColorStateList.valueOf(ContextCompat.getColor(app, checkBoxColor)));
|
CompoundButtonCompat.setButtonTintList(checkBox, ColorStateList.valueOf(ContextCompat.getColor(app, checkBoxColor)));
|
||||||
|
|
||||||
selectedSize.setText(getString(R.string.ltr_or_rtl_combine_via_slash, selectedItems.size(), allItems.size()));
|
String description;
|
||||||
|
if (type == ExportSettingsType.OFFLINE_MAPS && !selectedItems.isEmpty()) {
|
||||||
|
String size = AndroidUtils.formatSize(app, calculateSelectedItemsSize());
|
||||||
|
String selected = getString(R.string.ltr_or_rtl_combine_via_slash, selectedItems.size(), allItems.size());
|
||||||
|
description = getString(R.string.ltr_or_rtl_combine_via_comma, selected, size);
|
||||||
|
} else {
|
||||||
|
description = getString(R.string.ltr_or_rtl_combine_via_slash, selectedItems.size(), allItems.size());
|
||||||
|
}
|
||||||
|
selectedSize.setText(description);
|
||||||
|
}
|
||||||
|
|
||||||
|
private long calculateSelectedItemsSize() {
|
||||||
|
long itemsSize = 0;
|
||||||
|
for (int i = 0; i < allItems.size(); i++) {
|
||||||
|
Object object = allItems.get(i);
|
||||||
|
if (selectedItems.contains(object)) {
|
||||||
|
if (object instanceof FileSettingsItem) {
|
||||||
|
itemsSize += ((FileSettingsItem) object).getSize();
|
||||||
|
} else if (object instanceof File) {
|
||||||
|
itemsSize += ((File) object).length();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return itemsSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateItems(boolean checked) {
|
private void updateItems(boolean checked) {
|
||||||
|
@ -184,15 +245,13 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
dismiss();
|
dismiss();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void showInstance(@NonNull ExportSettingsType type, List<Object> selectedItems, List<?> allItems, @NonNull FragmentManager fm, @Nullable Fragment target) {
|
public static void showInstance(@NonNull FragmentManager fm, @NonNull ExportSettingsType type,
|
||||||
|
@NonNull BaseSettingsListFragment target, boolean exportMode) {
|
||||||
try {
|
try {
|
||||||
if (!fm.isStateSaved() && fm.findFragmentByTag(TAG) == null) {
|
if (!fm.isStateSaved() && fm.findFragmentByTag(TAG) == null) {
|
||||||
ExportItemsBottomSheet fragment = new ExportItemsBottomSheet();
|
ExportItemsBottomSheet fragment = new ExportItemsBottomSheet();
|
||||||
fragment.type = type;
|
fragment.type = type;
|
||||||
fragment.allItems = (List<Object>) allItems;
|
fragment.exportMode = exportMode;
|
||||||
if (selectedItems != null) {
|
|
||||||
fragment.selectedItems.addAll(selectedItems);
|
|
||||||
}
|
|
||||||
fragment.setTargetFragment(target, 0);
|
fragment.setTargetFragment(target, 0);
|
||||||
fragment.show(fm, TAG);
|
fragment.show(fm, TAG);
|
||||||
}
|
}
|
||||||
|
@ -211,7 +270,7 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setupBottomSheetItem(BottomSheetItemWithCompoundButton.Builder builder, Object object) {
|
private void setupBottomSheetItem(Builder builder, Object object) {
|
||||||
if (object instanceof ApplicationModeBean) {
|
if (object instanceof ApplicationModeBean) {
|
||||||
ApplicationModeBean modeBean = (ApplicationModeBean) object;
|
ApplicationModeBean modeBean = (ApplicationModeBean) object;
|
||||||
String profileName = modeBean.userProfileName;
|
String profileName = modeBean.userProfileName;
|
||||||
|
@ -254,10 +313,11 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
builder.setTitle(tileSource.getName());
|
builder.setTitle(tileSource.getName());
|
||||||
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_map, activeColorRes));
|
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_map, activeColorRes));
|
||||||
} else if (object instanceof File) {
|
} else if (object instanceof File) {
|
||||||
setupBottomSheetItemForFile(builder, (File) object);
|
File file = (File) object;
|
||||||
|
setupBottomSheetItemForFile(builder, file, file.lastModified(), file.length());
|
||||||
} else if (object instanceof FileSettingsItem) {
|
} else if (object instanceof FileSettingsItem) {
|
||||||
FileSettingsItem fileSettingsItem = (FileSettingsItem) object;
|
FileSettingsItem item = (FileSettingsItem) object;
|
||||||
setupBottomSheetItemForFile(builder, fileSettingsItem.getFile());
|
setupBottomSheetItemForFile(builder, item.getFile(), item.getLastModified(), item.getSize());
|
||||||
} else if (object instanceof AvoidRoadInfo) {
|
} else if (object instanceof AvoidRoadInfo) {
|
||||||
AvoidRoadInfo avoidRoadInfo = (AvoidRoadInfo) object;
|
AvoidRoadInfo avoidRoadInfo = (AvoidRoadInfo) object;
|
||||||
builder.setTitle(avoidRoadInfo.name);
|
builder.setTitle(avoidRoadInfo.name);
|
||||||
|
@ -275,6 +335,9 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
builder.setTitle(group.getDisplayName(app));
|
builder.setTitle(group.getDisplayName(app));
|
||||||
int color = group.getColor() == 0 ? ContextCompat.getColor(app, R.color.color_favorite) : group.getColor();
|
int color = group.getColor() == 0 ? ContextCompat.getColor(app, R.color.color_favorite) : group.getColor();
|
||||||
builder.setIcon(uiUtilities.getPaintedIcon(R.drawable.ic_action_folder, color));
|
builder.setIcon(uiUtilities.getPaintedIcon(R.drawable.ic_action_folder, color));
|
||||||
|
int points = group.getPoints().size();
|
||||||
|
String itemsDescr = getString(R.string.shared_string_gpx_points);
|
||||||
|
builder.setDescription(getString(R.string.ltr_or_rtl_combine_via_colon, itemsDescr, points));
|
||||||
} else if (object instanceof GlobalSettingsItem) {
|
} else if (object instanceof GlobalSettingsItem) {
|
||||||
GlobalSettingsItem globalSettingsItem = (GlobalSettingsItem) object;
|
GlobalSettingsItem globalSettingsItem = (GlobalSettingsItem) object;
|
||||||
builder.setTitle(globalSettingsItem.getPublicName(app));
|
builder.setTitle(globalSettingsItem.getPublicName(app));
|
||||||
|
@ -285,9 +348,12 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
builder.setTitle(getString(R.string.map_markers));
|
builder.setTitle(getString(R.string.map_markers));
|
||||||
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_flag, activeColorRes));
|
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_flag, activeColorRes));
|
||||||
} else if (ExportSettingsType.HISTORY_MARKERS.name().equals(markersGroup.getId())) {
|
} else if (ExportSettingsType.HISTORY_MARKERS.name().equals(markersGroup.getId())) {
|
||||||
builder.setTitle(getString(R.string.map_markers));
|
builder.setTitle(getString(R.string.markers_history));
|
||||||
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_history, activeColorRes));
|
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_history, activeColorRes));
|
||||||
}
|
}
|
||||||
|
int selectedMarkers = markersGroup.getMarkers().size();
|
||||||
|
String itemsDescr = getString(R.string.shared_string_items);
|
||||||
|
builder.setDescription(getString(R.string.ltr_or_rtl_combine_via_colon, itemsDescr, selectedMarkers));
|
||||||
} else if (object instanceof HistoryEntry) {
|
} else if (object instanceof HistoryEntry) {
|
||||||
HistoryEntry historyEntry = (HistoryEntry) object;
|
HistoryEntry historyEntry = (HistoryEntry) object;
|
||||||
builder.setTitle(historyEntry.getName().getName());
|
builder.setTitle(historyEntry.getName().getName());
|
||||||
|
@ -295,8 +361,8 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setupBottomSheetItemForFile(Builder builder, File file) {
|
private void setupBottomSheetItemForFile(Builder builder, File file, long lastModified, long size) {
|
||||||
FileSettingsItem.FileSubtype fileSubtype = FileSettingsItem.FileSubtype.getSubtypeByPath(app, file.getPath());
|
FileSubtype fileSubtype = FileSubtype.getSubtypeByPath(app, file.getPath());
|
||||||
builder.setTitle(file.getName());
|
builder.setTitle(file.getName());
|
||||||
if (file.getAbsolutePath().contains(IndexConstants.RENDERERS_DIR)) {
|
if (file.getAbsolutePath().contains(IndexConstants.RENDERERS_DIR)) {
|
||||||
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_map_style, activeColorRes));
|
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_map_style, activeColorRes));
|
||||||
|
@ -304,6 +370,8 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_route_distance, activeColorRes));
|
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_route_distance, activeColorRes));
|
||||||
} else if (file.getAbsolutePath().contains(IndexConstants.GPX_INDEX_DIR)) {
|
} else if (file.getAbsolutePath().contains(IndexConstants.GPX_INDEX_DIR)) {
|
||||||
builder.setTitle(GpxUiHelper.getGpxTitle(file.getName()));
|
builder.setTitle(GpxUiHelper.getGpxTitle(file.getName()));
|
||||||
|
builder.setTag(file);
|
||||||
|
builder.setDescription(getTrackDescr(file, lastModified, size));
|
||||||
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_route_distance, activeColorRes));
|
builder.setIcon(uiUtilities.getIcon(R.drawable.ic_action_route_distance, activeColorRes));
|
||||||
} else if (file.getAbsolutePath().contains(IndexConstants.AV_INDEX_DIR)) {
|
} else if (file.getAbsolutePath().contains(IndexConstants.AV_INDEX_DIR)) {
|
||||||
int iconId = AudioVideoNotesPlugin.getIconIdForRecordingFile(file);
|
int iconId = AudioVideoNotesPlugin.getIconIdForRecordingFile(file);
|
||||||
|
@ -316,6 +384,85 @@ public class ExportItemsBottomSheet extends MenuBottomSheetDialogFragment {
|
||||||
|| fileSubtype == FileSettingsItem.FileSubtype.VOICE) {
|
|| fileSubtype == FileSettingsItem.FileSubtype.VOICE) {
|
||||||
builder.setTitle(FileNameTranslationHelper.getFileNameWithRegion(app, file.getName()));
|
builder.setTitle(FileNameTranslationHelper.getFileNameWithRegion(app, file.getName()));
|
||||||
builder.setIcon(uiUtilities.getIcon(fileSubtype.getIconId(), activeColorRes));
|
builder.setIcon(uiUtilities.getIcon(fileSubtype.getIconId(), activeColorRes));
|
||||||
|
|
||||||
|
if (fileSubtype.isMap()) {
|
||||||
|
String mapDescription = getMapDescription(file);
|
||||||
|
String formattedSize = AndroidUtils.formatSize(app, size);
|
||||||
|
if (mapDescription != null) {
|
||||||
|
builder.setDescription(getString(R.string.ltr_or_rtl_combine_via_star, mapDescription, formattedSize));
|
||||||
|
} else {
|
||||||
|
builder.setDescription(formattedSize);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private final GpxDataItemCallback gpxDataItemCallback = new GpxDataItemCallback() {
|
||||||
|
@Override
|
||||||
|
public boolean isCancelled() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onGpxDataItemReady(GpxDataItem item) {
|
||||||
|
for (BaseBottomSheetItem bottomSheetItem : items) {
|
||||||
|
if (Algorithms.objectEquals(item.getFile(), bottomSheetItem.getTag())) {
|
||||||
|
((BottomSheetItemWithDescription) bottomSheetItem).setDescription(getTrackDescrForDataItem(item));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
private String getTrackDescr(@NonNull File file, long lastModified, long size) {
|
||||||
|
String folder = "";
|
||||||
|
File parent = file.getParentFile();
|
||||||
|
if (parent != null) {
|
||||||
|
folder = Algorithms.capitalizeFirstLetter(parent.getName());
|
||||||
|
}
|
||||||
|
if (exportMode) {
|
||||||
|
GpxDataItem dataItem = getDataItem(file, gpxDataItemCallback);
|
||||||
|
if (dataItem != null) {
|
||||||
|
return getTrackDescrForDataItem(dataItem);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
String date = OsmAndFormatter.getFormattedDate(app, lastModified);
|
||||||
|
String formattedSize = AndroidUtils.formatSize(app, size);
|
||||||
|
String descr = getString(R.string.ltr_or_rtl_combine_via_bold_point, folder, date);
|
||||||
|
return getString(R.string.ltr_or_rtl_combine_via_comma, descr, formattedSize);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getTrackDescrForDataItem(@NonNull GpxDataItem dataItem) {
|
||||||
|
GPXTrackAnalysis analysis = dataItem.getAnalysis();
|
||||||
|
if (analysis != null) {
|
||||||
|
File parent = dataItem.getFile().getParentFile();
|
||||||
|
String folder = Algorithms.capitalizeFirstLetter(parent.getName());
|
||||||
|
String dist = OsmAndFormatter.getFormattedDistance(analysis.totalDistance, app);
|
||||||
|
String points = analysis.wptPoints + " " + getString(R.string.shared_string_gpx_points).toLowerCase();
|
||||||
|
String descr = getString(R.string.ltr_or_rtl_combine_via_bold_point, folder, dist);
|
||||||
|
return getString(R.string.ltr_or_rtl_combine_via_comma, descr, points);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private GpxDataItem getDataItem(File file, @Nullable GpxDataItemCallback callback) {
|
||||||
|
return app.getGpxDbHelper().getItem(file, callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getMapDescription(File file) {
|
||||||
|
if (file.isDirectory() || file.getName().endsWith(IndexConstants.BINARY_WIKIVOYAGE_MAP_INDEX_EXT)) {
|
||||||
|
return getString(R.string.online_map);
|
||||||
|
} else if (file.getName().endsWith(IndexConstants.BINARY_ROAD_MAP_INDEX_EXT)) {
|
||||||
|
return getString(R.string.download_roads_only_item);
|
||||||
|
} else if (file.getName().endsWith(IndexConstants.BINARY_WIKI_MAP_INDEX_EXT)) {
|
||||||
|
return getString(R.string.download_wikipedia_maps);
|
||||||
|
} else if (file.getName().endsWith(IndexConstants.BINARY_SRTM_MAP_INDEX_EXT)) {
|
||||||
|
return getString(R.string.download_srtm_maps);
|
||||||
|
} else if (file.getName().endsWith(IndexConstants.BINARY_MAP_INDEX_EXT)) {
|
||||||
|
return getString(R.string.download_regular_maps);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -18,6 +18,7 @@ import net.osmand.plus.UiUtilities;
|
||||||
import net.osmand.plus.activities.OsmandBaseExpandableListAdapter;
|
import net.osmand.plus.activities.OsmandBaseExpandableListAdapter;
|
||||||
import net.osmand.plus.helpers.AndroidUiHelper;
|
import net.osmand.plus.helpers.AndroidUiHelper;
|
||||||
import net.osmand.plus.helpers.FontCache;
|
import net.osmand.plus.helpers.FontCache;
|
||||||
|
import net.osmand.plus.mapmarkers.MapMarkersGroup;
|
||||||
import net.osmand.plus.settings.backend.ExportSettingsCategory;
|
import net.osmand.plus.settings.backend.ExportSettingsCategory;
|
||||||
import net.osmand.plus.settings.backend.ExportSettingsType;
|
import net.osmand.plus.settings.backend.ExportSettingsType;
|
||||||
import net.osmand.plus.settings.backend.backup.FileSettingsItem;
|
import net.osmand.plus.settings.backend.backup.FileSettingsItem;
|
||||||
|
@ -54,6 +55,9 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
private final boolean nightMode;
|
private final boolean nightMode;
|
||||||
private final int activeColorRes;
|
private final int activeColorRes;
|
||||||
private final int secondaryColorRes;
|
private final int secondaryColorRes;
|
||||||
|
private final int groupViewHeight;
|
||||||
|
private final int childViewHeight;
|
||||||
|
private final int listBottomPadding;
|
||||||
|
|
||||||
ExportSettingsAdapter(OsmandApplication app, OnItemSelectedListener listener, boolean nightMode) {
|
ExportSettingsAdapter(OsmandApplication app, OnItemSelectedListener listener, boolean nightMode) {
|
||||||
this.app = app;
|
this.app = app;
|
||||||
|
@ -63,6 +67,9 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
themedInflater = UiUtilities.getInflater(app, nightMode);
|
themedInflater = UiUtilities.getInflater(app, nightMode);
|
||||||
activeColorRes = nightMode ? R.color.icon_color_active_dark : R.color.icon_color_active_light;
|
activeColorRes = nightMode ? R.color.icon_color_active_dark : R.color.icon_color_active_light;
|
||||||
secondaryColorRes = nightMode ? R.color.icon_color_secondary_dark : R.color.icon_color_secondary_light;
|
secondaryColorRes = nightMode ? R.color.icon_color_secondary_dark : R.color.icon_color_secondary_light;
|
||||||
|
groupViewHeight = app.getResources().getDimensionPixelSize(R.dimen.setting_list_item_group_height);
|
||||||
|
childViewHeight = app.getResources().getDimensionPixelSize(R.dimen.setting_list_item_large_height);
|
||||||
|
listBottomPadding = app.getResources().getDimensionPixelSize(R.dimen.fab_recycler_view_padding_bottom);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -70,6 +77,7 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
View group = convertView;
|
View group = convertView;
|
||||||
if (group == null) {
|
if (group == null) {
|
||||||
group = themedInflater.inflate(R.layout.profile_data_list_item_group, parent, false);
|
group = themedInflater.inflate(R.layout.profile_data_list_item_group, parent, false);
|
||||||
|
group.findViewById(R.id.item_container).setMinimumHeight(groupViewHeight);
|
||||||
}
|
}
|
||||||
final ExportSettingsCategory category = itemsTypes.get(groupPosition);
|
final ExportSettingsCategory category = itemsTypes.get(groupPosition);
|
||||||
final SettingsCategoryItems items = itemsMap.get(category);
|
final SettingsCategoryItems items = itemsMap.get(category);
|
||||||
|
@ -108,6 +116,9 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
boolean addPadding = !isExpanded && groupPosition == getGroupCount() - 1;
|
||||||
|
group.setPadding(0, 0, 0, addPadding ? listBottomPadding : 0);
|
||||||
|
|
||||||
adjustIndicator(app, groupPosition, isExpanded, group, nightMode);
|
adjustIndicator(app, groupPosition, isExpanded, group, nightMode);
|
||||||
AndroidUiHelper.updateVisibility(group.findViewById(R.id.divider), isExpanded);
|
AndroidUiHelper.updateVisibility(group.findViewById(R.id.divider), isExpanded);
|
||||||
AndroidUiHelper.updateVisibility(group.findViewById(R.id.card_top_divider), true);
|
AndroidUiHelper.updateVisibility(group.findViewById(R.id.card_top_divider), true);
|
||||||
|
@ -122,6 +133,7 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
View child = convertView;
|
View child = convertView;
|
||||||
if (child == null) {
|
if (child == null) {
|
||||||
child = themedInflater.inflate(R.layout.profile_data_list_item_group, parent, false);
|
child = themedInflater.inflate(R.layout.profile_data_list_item_group, parent, false);
|
||||||
|
child.findViewById(R.id.item_container).setMinimumHeight(childViewHeight);
|
||||||
}
|
}
|
||||||
final ExportSettingsCategory category = itemsTypes.get(groupPosition);
|
final ExportSettingsCategory category = itemsTypes.get(groupPosition);
|
||||||
final SettingsCategoryItems categoryItems = itemsMap.get(category);
|
final SettingsCategoryItems categoryItems = itemsMap.get(category);
|
||||||
|
@ -157,7 +169,7 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
if (listener != null) {
|
if (listener != null) {
|
||||||
listener.onTypeClicked(category, type);
|
listener.onTypeClicked(type);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -174,7 +186,8 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
notifyDataSetChanged();
|
notifyDataSetChanged();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
boolean addPadding = isLastChild && groupPosition == getGroupCount() - 1;
|
||||||
|
child.setPadding(0, 0, 0, addPadding ? listBottomPadding : 0);
|
||||||
AndroidUiHelper.updateVisibility(child.findViewById(R.id.card_bottom_divider), isLastChild);
|
AndroidUiHelper.updateVisibility(child.findViewById(R.id.card_bottom_divider), isLastChild);
|
||||||
|
|
||||||
return child;
|
return child;
|
||||||
|
@ -247,10 +260,6 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
notifyDataSetChanged();
|
notifyDataSetChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean hasSelectedData() {
|
|
||||||
return !selectedItemsMap.isEmpty();
|
|
||||||
}
|
|
||||||
|
|
||||||
public List<? super Object> getData() {
|
public List<? super Object> getData() {
|
||||||
List<Object> selectedItems = new ArrayList<>();
|
List<Object> selectedItems = new ArrayList<>();
|
||||||
for (List<?> items : selectedItemsMap.values()) {
|
for (List<?> items : selectedItemsMap.values()) {
|
||||||
|
@ -307,6 +316,10 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
itemsSize += ((FileSettingsItem) object).getSize();
|
itemsSize += ((FileSettingsItem) object).getSize();
|
||||||
} else if (object instanceof File) {
|
} else if (object instanceof File) {
|
||||||
itemsSize += ((File) object).length();
|
itemsSize += ((File) object).length();
|
||||||
|
} else if (object instanceof MapMarkersGroup) {
|
||||||
|
int selectedMarkers = ((MapMarkersGroup) object).getMarkers().size();
|
||||||
|
String itemsDescr = app.getString(R.string.shared_string_items);
|
||||||
|
return app.getString(R.string.ltr_or_rtl_combine_via_colon, itemsDescr, selectedMarkers);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -332,7 +345,7 @@ public class ExportSettingsAdapter extends OsmandBaseExpandableListAdapter {
|
||||||
|
|
||||||
void onCategorySelected(ExportSettingsCategory type, boolean selected);
|
void onCategorySelected(ExportSettingsCategory type, boolean selected);
|
||||||
|
|
||||||
void onTypeClicked(ExportSettingsCategory category, ExportSettingsType type);
|
void onTypeClicked(ExportSettingsType type);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -11,7 +11,6 @@ import android.view.ViewGroup;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
import android.widget.Toast;
|
import android.widget.Toast;
|
||||||
|
|
||||||
import androidx.activity.OnBackPressedCallback;
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.fragment.app.FragmentActivity;
|
import androidx.fragment.app.FragmentActivity;
|
||||||
|
@ -76,14 +75,8 @@ public class ExportSettingsFragment extends BaseSettingsListFragment {
|
||||||
progressMax = savedInstanceState.getInt(PROGRESS_MAX_KEY);
|
progressMax = savedInstanceState.getInt(PROGRESS_MAX_KEY);
|
||||||
progressValue = savedInstanceState.getInt(PROGRESS_VALUE_KEY);
|
progressValue = savedInstanceState.getInt(PROGRESS_VALUE_KEY);
|
||||||
}
|
}
|
||||||
|
exportMode = true;
|
||||||
dataList = app.getSettingsHelper().getAdditionalData(globalExport);
|
dataList = app.getSettingsHelper().getAdditionalData(globalExport);
|
||||||
|
|
||||||
requireActivity().getOnBackPressedDispatcher().addCallback(this, new OnBackPressedCallback(true) {
|
|
||||||
@Override
|
|
||||||
public void handleOnBackPressed() {
|
|
||||||
showExitDialog();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
|
|
|
@ -12,7 +12,6 @@ import android.widget.LinearLayout;
|
||||||
import android.widget.ProgressBar;
|
import android.widget.ProgressBar;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.activity.OnBackPressedCallback;
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
import androidx.fragment.app.FragmentManager;
|
import androidx.fragment.app.FragmentManager;
|
||||||
|
@ -101,13 +100,8 @@ public class ImportSettingsFragment extends BaseSettingsListFragment {
|
||||||
if (savedInstanceState != null) {
|
if (savedInstanceState != null) {
|
||||||
duplicateStartTime = savedInstanceState.getLong(DUPLICATES_START_TIME_KEY);
|
duplicateStartTime = savedInstanceState.getLong(DUPLICATES_START_TIME_KEY);
|
||||||
}
|
}
|
||||||
|
exportMode = false;
|
||||||
settingsHelper = app.getSettingsHelper();
|
settingsHelper = app.getSettingsHelper();
|
||||||
requireActivity().getOnBackPressedDispatcher().addCallback(this, new OnBackPressedCallback(true) {
|
|
||||||
@Override
|
|
||||||
public void handleOnBackPressed() {
|
|
||||||
showExitDialog();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
ImportAsyncTask importTask = settingsHelper.getImportTask();
|
ImportAsyncTask importTask = settingsHelper.getImportTask();
|
||||||
if (importTask != null) {
|
if (importTask != null) {
|
||||||
|
|
|
@ -67,7 +67,7 @@ public class WikivoyageWebViewClient extends WebViewClient {
|
||||||
if (url.contains(WIKIVOAYAGE_DOMAIN) && isWebPage) {
|
if (url.contains(WIKIVOAYAGE_DOMAIN) && isWebPage) {
|
||||||
String lang = WikiArticleHelper.getLang(url);
|
String lang = WikiArticleHelper.getLang(url);
|
||||||
String articleName = WikiArticleHelper.getArticleNameFromUrl(url, lang);
|
String articleName = WikiArticleHelper.getArticleNameFromUrl(url, lang);
|
||||||
long articleId = app.getTravelDbHelper().getArticleId(articleName, lang);
|
long articleId = app.getTravelHelper().getArticleId(articleName, lang);
|
||||||
if (articleId != 0) {
|
if (articleId != 0) {
|
||||||
WikivoyageArticleDialogFragment.showInstance(app, fragmentManager, articleId, lang);
|
WikivoyageArticleDialogFragment.showInstance(app, fragmentManager, articleId, lang);
|
||||||
} else {
|
} else {
|
||||||
|
@ -116,7 +116,7 @@ public class WikivoyageWebViewClient extends WebViewClient {
|
||||||
|
|
||||||
fragmentManager.popBackStackImmediate();
|
fragmentManager.popBackStackImmediate();
|
||||||
|
|
||||||
File path = app.getTravelDbHelper().createGpxFile(article);
|
File path = app.getTravelHelper().createGpxFile(article);
|
||||||
GPXUtilities.GPXFile gpxFile = article.getGpxFile();
|
GPXUtilities.GPXFile gpxFile = article.getGpxFile();
|
||||||
gpxFile.path = path.getAbsolutePath();
|
gpxFile.path = path.getAbsolutePath();
|
||||||
app.getSelectedGpxHelper().setGpxFileToDisplay(gpxFile);
|
app.getSelectedGpxHelper().setGpxFileToDisplay(gpxFile);
|
||||||
|
|
|
@ -42,6 +42,7 @@ import net.osmand.plus.wikivoyage.WikivoyageShowPicturesDialogFragment;
|
||||||
import net.osmand.plus.wikivoyage.WikivoyageWebViewClient;
|
import net.osmand.plus.wikivoyage.WikivoyageWebViewClient;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
||||||
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelLocalDataHelper;
|
import net.osmand.plus.wikivoyage.data.TravelLocalDataHelper;
|
||||||
import net.osmand.util.Algorithms;
|
import net.osmand.util.Algorithms;
|
||||||
|
|
||||||
|
@ -148,8 +149,8 @@ public class WikivoyageArticleDialogFragment extends WikiArticleBaseDialogFragme
|
||||||
if (article == null || activity == null || fm == null) {
|
if (article == null || activity == null || fm == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
TravelDbHelper dbHelper = getMyApplication().getTravelDbHelper();
|
TravelHelper travelHelper = getMyApplication().getTravelHelper();
|
||||||
File path = dbHelper.createGpxFile(article);
|
File path = travelHelper.createGpxFile(article);
|
||||||
Intent newIntent = new Intent(activity, getMyApplication().getAppCustomization().getTrackActivity());
|
Intent newIntent = new Intent(activity, getMyApplication().getAppCustomization().getTrackActivity());
|
||||||
newIntent.putExtra(TrackActivity.TRACK_FILE_NAME, path.getAbsolutePath());
|
newIntent.putExtra(TrackActivity.TRACK_FILE_NAME, path.getAbsolutePath());
|
||||||
newIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
newIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
||||||
|
@ -234,7 +235,7 @@ public class WikivoyageArticleDialogFragment extends WikiArticleBaseDialogFragme
|
||||||
|
|
||||||
private void updateSaveButton() {
|
private void updateSaveButton() {
|
||||||
if (article != null) {
|
if (article != null) {
|
||||||
final TravelLocalDataHelper helper = getMyApplication().getTravelDbHelper().getLocalDataHelper();
|
final TravelLocalDataHelper helper = getMyApplication().getTravelHelper().getLocalDataHelper();
|
||||||
final boolean saved = helper.isArticleSaved(article);
|
final boolean saved = helper.isArticleSaved(article);
|
||||||
Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later);
|
Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later);
|
||||||
saveBtn.setText(getString(saved ? R.string.shared_string_remove : R.string.shared_string_bookmark));
|
saveBtn.setText(getString(saved ? R.string.shared_string_remove : R.string.shared_string_bookmark));
|
||||||
|
@ -246,7 +247,7 @@ public class WikivoyageArticleDialogFragment extends WikiArticleBaseDialogFragme
|
||||||
if (saved) {
|
if (saved) {
|
||||||
helper.removeArticleFromSaved(article);
|
helper.removeArticleFromSaved(article);
|
||||||
} else {
|
} else {
|
||||||
getMyApplication().getTravelDbHelper().createGpxFile(article);
|
getMyApplication().getTravelHelper().createGpxFile(article);
|
||||||
helper.addArticleToSaved(article);
|
helper.addArticleToSaved(article);
|
||||||
}
|
}
|
||||||
updateSaveButton();
|
updateSaveButton();
|
||||||
|
@ -301,7 +302,7 @@ public class WikivoyageArticleDialogFragment extends WikiArticleBaseDialogFragme
|
||||||
selectedLang = langs.get(0);
|
selectedLang = langs.get(0);
|
||||||
}
|
}
|
||||||
articleToolbarText.setText("");
|
articleToolbarText.setText("");
|
||||||
article = getMyApplication().getTravelDbHelper().getArticle(tripId, selectedLang);
|
article = getMyApplication().getTravelHelper().getArticle(tripId, selectedLang);
|
||||||
if (article == null) {
|
if (article == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -314,7 +315,7 @@ public class WikivoyageArticleDialogFragment extends WikiArticleBaseDialogFragme
|
||||||
trackButton.setVisibility(View.GONE);
|
trackButton.setVisibility(View.GONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
TravelLocalDataHelper ldh = getMyApplication().getTravelDbHelper().getLocalDataHelper();
|
TravelLocalDataHelper ldh = getMyApplication().getTravelHelper().getLocalDataHelper();
|
||||||
ldh.addToHistory(article);
|
ldh.addToHistory(article);
|
||||||
|
|
||||||
updateSaveButton();
|
updateSaveButton();
|
||||||
|
@ -370,7 +371,7 @@ public class WikivoyageArticleDialogFragment extends WikiArticleBaseDialogFragme
|
||||||
@NonNull FragmentManager fm,
|
@NonNull FragmentManager fm,
|
||||||
@NonNull String title,
|
@NonNull String title,
|
||||||
@NonNull String lang) {
|
@NonNull String lang) {
|
||||||
long cityId = app.getTravelDbHelper().getArticleId(title, lang);
|
long cityId = app.getTravelHelper().getArticleId(title, lang);
|
||||||
return showInstance(app, fm, cityId, lang);
|
return showInstance(app, fm, cityId, lang);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -378,7 +379,7 @@ public class WikivoyageArticleDialogFragment extends WikiArticleBaseDialogFragme
|
||||||
@NonNull FragmentManager fm,
|
@NonNull FragmentManager fm,
|
||||||
long cityId,
|
long cityId,
|
||||||
@Nullable String selectedLang) {
|
@Nullable String selectedLang) {
|
||||||
ArrayList<String> langs = app.getTravelDbHelper().getArticleLangs(cityId);
|
ArrayList<String> langs = app.getTravelHelper().getArticleLangs(cityId);
|
||||||
return showInstance(fm, cityId, langs, selectedLang);
|
return showInstance(fm, cityId, langs, selectedLang);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -73,13 +73,13 @@ public class WikivoyageArticleNavigationFragment extends MenuBottomSheetDialogFr
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
article = getMyApplication().getTravelDbHelper().getArticle(cityId, selectedLang);
|
article = getMyApplication().getTravelHelper().getArticle(cityId, selectedLang);
|
||||||
if (article == null) {
|
if (article == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
parentsList = new ArrayList<>(Arrays.asList(article.getAggregatedPartOf().split(",")));
|
parentsList = new ArrayList<>(Arrays.asList(article.getAggregatedPartOf().split(",")));
|
||||||
|
|
||||||
LinkedHashMap<WikivoyageSearchResult, List<WikivoyageSearchResult>> navigationMap = getMyApplication().getTravelDbHelper().getNavigationMap(article);
|
LinkedHashMap<WikivoyageSearchResult, List<WikivoyageSearchResult>> navigationMap = getMyApplication().getTravelHelper().getNavigationMap(article);
|
||||||
|
|
||||||
items.add(new TitleItem(getString(R.string.shared_string_navigation)));
|
items.add(new TitleItem(getString(R.string.shared_string_navigation)));
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@ import net.osmand.IndexConstants;
|
||||||
import net.osmand.Location;
|
import net.osmand.Location;
|
||||||
import net.osmand.OsmAndCollator;
|
import net.osmand.OsmAndCollator;
|
||||||
import net.osmand.PlatformUtil;
|
import net.osmand.PlatformUtil;
|
||||||
|
import net.osmand.data.Amenity;
|
||||||
import net.osmand.data.LatLon;
|
import net.osmand.data.LatLon;
|
||||||
import net.osmand.plus.OsmandApplication;
|
import net.osmand.plus.OsmandApplication;
|
||||||
import net.osmand.plus.R;
|
import net.osmand.plus.R;
|
||||||
|
@ -43,7 +44,7 @@ import java.util.Set;
|
||||||
|
|
||||||
import gnu.trove.map.hash.TLongObjectHashMap;
|
import gnu.trove.map.hash.TLongObjectHashMap;
|
||||||
|
|
||||||
public class TravelDbHelper {
|
public class TravelDbHelper implements TravelHelper {
|
||||||
|
|
||||||
private static final Log LOG = PlatformUtil.getLog(TravelDbHelper.class);
|
private static final Log LOG = PlatformUtil.getLog(TravelDbHelper.class);
|
||||||
|
|
||||||
|
@ -646,7 +647,7 @@ public class TravelDbHelper {
|
||||||
return file;
|
return file;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class PopularArticle {
|
protected static class PopularArticle {
|
||||||
long tripId;
|
long tripId;
|
||||||
String title;
|
String title;
|
||||||
String lang;
|
String lang;
|
||||||
|
@ -654,11 +655,11 @@ public class TravelDbHelper {
|
||||||
int order;
|
int order;
|
||||||
double lat;
|
double lat;
|
||||||
double lon;
|
double lon;
|
||||||
|
|
||||||
public boolean isLocationSpecified() {
|
public boolean isLocationSpecified() {
|
||||||
return !Double.isNaN(lat) && !Double.isNaN(lon);
|
return !Double.isNaN(lat) && !Double.isNaN(lon);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static PopularArticle readArticle(SQLiteCursor cursor) {
|
public static PopularArticle readArticle(SQLiteCursor cursor) {
|
||||||
PopularArticle res = new PopularArticle();
|
PopularArticle res = new PopularArticle();
|
||||||
res.title = cursor.getString(0);
|
res.title = cursor.getString(0);
|
||||||
|
@ -670,5 +671,17 @@ public class TravelDbHelper {
|
||||||
res.popIndex = cursor.isNull(6) ? 0 : cursor.getInt(6);
|
res.popIndex = cursor.isNull(6) ? 0 : cursor.getInt(6);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static PopularArticle readArticleFromAmenity(Amenity a, String lang) {
|
||||||
|
PopularArticle res = new PopularArticle();
|
||||||
|
res.title = a.getName(lang);
|
||||||
|
res.lat = a.getLocation().getLatitude();
|
||||||
|
res.lon = a.getLocation().getLongitude();
|
||||||
|
res.tripId = a.getId();
|
||||||
|
res.lang = lang;
|
||||||
|
res.order = -1;
|
||||||
|
res.popIndex = 0;
|
||||||
|
return res;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
53
OsmAnd/src/net/osmand/plus/wikivoyage/data/TravelHelper.java
Normal file
53
OsmAnd/src/net/osmand/plus/wikivoyage/data/TravelHelper.java
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
package net.osmand.plus.wikivoyage.data;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
import net.osmand.plus.OsmandApplication;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public interface TravelHelper {
|
||||||
|
|
||||||
|
TravelLocalDataHelper getLocalDataHelper();
|
||||||
|
|
||||||
|
void initTravelBooks();
|
||||||
|
|
||||||
|
void loadDataForSelectedTravelBook();
|
||||||
|
|
||||||
|
File getSelectedTravelBook();
|
||||||
|
|
||||||
|
List<File> getExistingTravelBooks();
|
||||||
|
|
||||||
|
void selectTravelBook(File f);
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
List<WikivoyageSearchResult> search(final String searchQuery);
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
List<TravelArticle> getPopularArticles();
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
List<TravelArticle> loadPopularArticles();
|
||||||
|
|
||||||
|
LinkedHashMap<WikivoyageSearchResult, List<WikivoyageSearchResult>> getNavigationMap(
|
||||||
|
final TravelArticle article);
|
||||||
|
|
||||||
|
TravelArticle getArticle(long cityId, String lang);
|
||||||
|
|
||||||
|
TravelArticle getArticle(String title, String lang);
|
||||||
|
|
||||||
|
long getArticleId(String title, String lang);
|
||||||
|
|
||||||
|
ArrayList<String> getArticleLangs(long cityId);
|
||||||
|
|
||||||
|
String formatTravelBookName(File tb);
|
||||||
|
|
||||||
|
String getGPXName(TravelArticle article);
|
||||||
|
|
||||||
|
File createGpxFile(TravelArticle article);
|
||||||
|
}
|
|
@ -260,7 +260,7 @@ public class TravelLocalDataHelper {
|
||||||
if (oldVersion < 3) {
|
if (oldVersion < 3) {
|
||||||
conn.execSQL("ALTER TABLE " + HISTORY_TABLE_NAME + " ADD " + HISTORY_COL_TRAVEL_BOOK + " TEXT");
|
conn.execSQL("ALTER TABLE " + HISTORY_TABLE_NAME + " ADD " + HISTORY_COL_TRAVEL_BOOK + " TEXT");
|
||||||
conn.execSQL("ALTER TABLE " + BOOKMARKS_TABLE_NAME + " ADD " + BOOKMARKS_COL_TRAVEL_BOOK + " TEXT");
|
conn.execSQL("ALTER TABLE " + BOOKMARKS_TABLE_NAME + " ADD " + BOOKMARKS_COL_TRAVEL_BOOK + " TEXT");
|
||||||
File selectedTravelBook = context.getTravelDbHelper().getSelectedTravelBook();
|
File selectedTravelBook = context.getTravelHelper().getSelectedTravelBook();
|
||||||
if (selectedTravelBook != null) {
|
if (selectedTravelBook != null) {
|
||||||
Object[] args = new Object[]{selectedTravelBook.getName()};
|
Object[] args = new Object[]{selectedTravelBook.getName()};
|
||||||
conn.execSQL("UPDATE " + HISTORY_TABLE_NAME + " SET " + HISTORY_COL_TRAVEL_BOOK + " = ?", args);
|
conn.execSQL("UPDATE " + HISTORY_TABLE_NAME + " SET " + HISTORY_COL_TRAVEL_BOOK + " = ?", args);
|
||||||
|
@ -452,7 +452,7 @@ public class TravelLocalDataHelper {
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
private String getSelectedTravelBookName() {
|
private String getSelectedTravelBookName() {
|
||||||
File selectedTravelBook = context.getTravelDbHelper().getSelectedTravelBook();
|
File selectedTravelBook = context.getTravelHelper().getSelectedTravelBook();
|
||||||
if (selectedTravelBook != null) {
|
if (selectedTravelBook != null) {
|
||||||
return selectedTravelBook.getName();
|
return selectedTravelBook.getName();
|
||||||
}
|
}
|
||||||
|
|
301
OsmAnd/src/net/osmand/plus/wikivoyage/data/TravelObfHelper.java
Normal file
301
OsmAnd/src/net/osmand/plus/wikivoyage/data/TravelObfHelper.java
Normal file
|
@ -0,0 +1,301 @@
|
||||||
|
package net.osmand.plus.wikivoyage.data;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
import net.osmand.Collator;
|
||||||
|
import net.osmand.GPXUtilities;
|
||||||
|
import net.osmand.IndexConstants;
|
||||||
|
import net.osmand.OsmAndCollator;
|
||||||
|
import net.osmand.PlatformUtil;
|
||||||
|
import net.osmand.ResultMatcher;
|
||||||
|
import net.osmand.binary.BinaryIndexPart;
|
||||||
|
import net.osmand.binary.BinaryMapIndexReader;
|
||||||
|
import net.osmand.binary.BinaryMapPoiReaderAdapter;
|
||||||
|
import net.osmand.data.Amenity;
|
||||||
|
import net.osmand.data.LatLon;
|
||||||
|
import net.osmand.plus.OsmandApplication;
|
||||||
|
import net.osmand.plus.R;
|
||||||
|
import net.osmand.util.Algorithms;
|
||||||
|
import net.osmand.util.MapUtils;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.RandomAccessFile;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Iterator;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public class TravelObfHelper implements TravelHelper{
|
||||||
|
|
||||||
|
private static final Log LOG = PlatformUtil.getLog(TravelObfHelper.class);
|
||||||
|
|
||||||
|
private static final String WIKIVOYAGE_OBF = "Wikivoyage.obf";
|
||||||
|
public static final String ROUTE_ARTICLE = "route_article";
|
||||||
|
|
||||||
|
private final OsmandApplication application;
|
||||||
|
private Collator collator;
|
||||||
|
private TravelLocalDataHelper localDataHelper;
|
||||||
|
|
||||||
|
private File selectedTravelBook = null;
|
||||||
|
private List<File> existingTravelBooks = new ArrayList<>();
|
||||||
|
private List<TravelArticle> popularArticles = new ArrayList<TravelArticle>();
|
||||||
|
|
||||||
|
private BinaryMapIndexReader index = null;
|
||||||
|
|
||||||
|
|
||||||
|
public TravelObfHelper(OsmandApplication application) {
|
||||||
|
this.application = application;
|
||||||
|
collator = OsmAndCollator.primaryCollator();
|
||||||
|
localDataHelper = new TravelLocalDataHelper(application);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean checkIfObfFileExists(OsmandApplication app) {
|
||||||
|
File[] files = app.getAppPath(IndexConstants.WIKIVOYAGE_INDEX_DIR).listFiles();
|
||||||
|
if (files != null) {
|
||||||
|
for (File f : files) {
|
||||||
|
if (f.getName().equals(WIKIVOYAGE_OBF)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TravelLocalDataHelper getLocalDataHelper() {
|
||||||
|
return localDataHelper;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** TODO
|
||||||
|
* 1. implement regional travelbooks
|
||||||
|
* 2. check settings for default?
|
||||||
|
*/
|
||||||
|
public void initTravelBooks() {
|
||||||
|
List<File> files = getPossibleFiles();
|
||||||
|
String travelBook = application.getSettings().SELECTED_TRAVEL_BOOK.get();
|
||||||
|
existingTravelBooks.clear();
|
||||||
|
if (files != null && !files.isEmpty()) {
|
||||||
|
for (File f : files) {
|
||||||
|
existingTravelBooks.add(f);
|
||||||
|
if (selectedTravelBook == null) {
|
||||||
|
selectedTravelBook = f;
|
||||||
|
} else if (Algorithms.objectEquals(travelBook, f.getName())) {
|
||||||
|
selectedTravelBook = f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
selectedTravelBook = files.get(0);
|
||||||
|
} else {
|
||||||
|
selectedTravelBook = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* todo: get all obf files from folder, may be we should add some suffix like 'wikivoyage'
|
||||||
|
* to filenames to distinguish from other maps? Or add some checks right there.
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
private List<File> getPossibleFiles() {
|
||||||
|
File[] files = application.getAppPath(IndexConstants.WIKIVOYAGE_INDEX_DIR).listFiles();
|
||||||
|
if (files != null) {
|
||||||
|
List<File> res = new ArrayList<>();
|
||||||
|
for (File file : files) {
|
||||||
|
if (file.getName().equals("Wikivoyage.obf")) {
|
||||||
|
res.add(file);
|
||||||
|
LOG.debug(String.format("FIle name: %s", file.getAbsolutePath()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void loadDataForSelectedTravelBook() {
|
||||||
|
localDataHelper.refreshCachedData();
|
||||||
|
loadPopularArticles();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public File getSelectedTravelBook() {
|
||||||
|
return selectedTravelBook;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<File> getExistingTravelBooks() {
|
||||||
|
return existingTravelBooks;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void selectTravelBook(File f) {
|
||||||
|
//todo
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public List<WikivoyageSearchResult> search(String searchQuery) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public List<TravelArticle> getPopularArticles() {
|
||||||
|
return popularArticles;
|
||||||
|
}
|
||||||
|
|
||||||
|
//TODO for now it reads any articles, since we didn't have popular articles in the obf
|
||||||
|
@NonNull
|
||||||
|
public List<TravelArticle> loadPopularArticles() {
|
||||||
|
String language = application.getLanguage();
|
||||||
|
final List<Amenity> articles = new ArrayList<>();
|
||||||
|
try {
|
||||||
|
BinaryMapIndexReader bookIndexReader = getBookBinaryIndex();
|
||||||
|
if (bookIndexReader == null) {
|
||||||
|
popularArticles = new ArrayList<>();
|
||||||
|
return popularArticles;
|
||||||
|
}
|
||||||
|
LatLon ll = application.getMapViewTrackingUtilities().getMapLocation();
|
||||||
|
float coeff = 2;
|
||||||
|
BinaryMapIndexReader.SearchRequest<Amenity> req =
|
||||||
|
BinaryMapIndexReader.buildSearchPoiRequest(
|
||||||
|
MapUtils.get31TileNumberX(ll.getLongitude() - coeff),
|
||||||
|
MapUtils.get31TileNumberX(ll.getLongitude() + coeff),
|
||||||
|
MapUtils.get31TileNumberY(ll.getLatitude() + coeff),
|
||||||
|
MapUtils.get31TileNumberY(ll.getLatitude() - coeff),
|
||||||
|
-1,
|
||||||
|
BinaryMapIndexReader.ACCEPT_ALL_POI_TYPE_FILTER,
|
||||||
|
new ResultMatcher<Amenity>() {
|
||||||
|
int count = 0;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean publish(Amenity object) {
|
||||||
|
//TODO need more logical way to filter results
|
||||||
|
if (object.getSubType().equals(ROUTE_ARTICLE)) {
|
||||||
|
articles.add(object);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isCancelled() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
bookIndexReader.searchPoi(req);
|
||||||
|
bookIndexReader.close();
|
||||||
|
|
||||||
|
if (articles.size() > 0) {
|
||||||
|
Iterator<Amenity> it = articles.iterator();
|
||||||
|
while (it.hasNext()) {
|
||||||
|
Amenity a = it.next();
|
||||||
|
if (!a.getName(language).equals("")) {
|
||||||
|
popularArticles.add(readArticle(a, language));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
return popularArticles;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private TravelArticle readArticle(Amenity amenity, String lang) {
|
||||||
|
TravelArticle res = new TravelArticle();
|
||||||
|
|
||||||
|
res.title = amenity.getName(lang).equals("") ? amenity.getName() : amenity.getName(lang);
|
||||||
|
res.content = amenity.getDescription(lang);
|
||||||
|
res.isPartOf = amenity.getTagContent(Amenity.IS_PART, lang) == null ? "" : amenity.getTagContent(Amenity.IS_PART, lang);
|
||||||
|
res.lat = amenity.getLocation().getLatitude();
|
||||||
|
res.lon = amenity.getLocation().getLongitude();
|
||||||
|
res.imageTitle = amenity.getTagContent(Amenity.IMAGE_TITLE, lang) == null ? "" : amenity.getTagContent(Amenity.IMAGE_TITLE, lang);
|
||||||
|
res.tripId = amenity.getId(); //?
|
||||||
|
res.originalId = 0; //?
|
||||||
|
res.lang = lang;
|
||||||
|
res.contentsJson = amenity.getTagContent(Amenity.CONTENT_JSON, lang) == null ? "" : amenity.getTagContent(Amenity.CONTENT_JSON, lang);
|
||||||
|
res.aggregatedPartOf = amenity.getTagContent(Amenity.IS_AGGR_PART, lang) == null ? "" : amenity.getTagContent(Amenity.IS_AGGR_PART, lang);
|
||||||
|
|
||||||
|
// crash in some places, need to fix it
|
||||||
|
// try {
|
||||||
|
// String gpxContent = amenity.getAdditionalInfo("gpx_info");
|
||||||
|
// res.gpxFile = GPXUtilities.loadGPXFile(new ByteArrayInputStream(gpxContent.getBytes("UTF-8")));
|
||||||
|
// } catch (IOException e) {
|
||||||
|
// LOG.error(e.getMessage(), e);
|
||||||
|
// }
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
private BinaryMapIndexReader getBookBinaryIndex() throws IOException {
|
||||||
|
application.getSettings().SELECTED_TRAVEL_BOOK.set(selectedTravelBook.getName());
|
||||||
|
try {
|
||||||
|
RandomAccessFile r = new RandomAccessFile(selectedTravelBook.getAbsolutePath(), "r");
|
||||||
|
BinaryMapIndexReader index = new BinaryMapIndexReader(r, selectedTravelBook);
|
||||||
|
for (BinaryIndexPart p : index.getIndexes()) {
|
||||||
|
if (p instanceof BinaryMapPoiReaderAdapter.PoiRegion) {
|
||||||
|
return index;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
System.err.println("File doesn't have valid structure : " + selectedTravelBook.getName() + " " + e.getMessage());
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LinkedHashMap<WikivoyageSearchResult, List<WikivoyageSearchResult>> getNavigationMap(TravelArticle article) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TravelArticle getArticle(long cityId, String lang) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TravelArticle getArticle(String title, String lang) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public long getArticleId(String title, String lang) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ArrayList<String> getArticleLangs(long cityId) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String formatTravelBookName(File tb) {
|
||||||
|
if (tb == null) {
|
||||||
|
return application.getString(R.string.shared_string_none);
|
||||||
|
}
|
||||||
|
String nm = tb.getName();
|
||||||
|
return nm.substring(0, nm.indexOf('.')).replace('_', ' ');
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getGPXName(TravelArticle article) {
|
||||||
|
return article.getTitle().replace('/', '_').replace('\'', '_')
|
||||||
|
.replace('\"', '_') + IndexConstants.GPX_FILE_EXT;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public File createGpxFile(TravelArticle article) {
|
||||||
|
final GPXUtilities.GPXFile gpx = article.getGpxFile();
|
||||||
|
File file = application.getAppPath(IndexConstants.GPX_TRAVEL_DIR + getGPXName(article));
|
||||||
|
if (!file.exists()) {
|
||||||
|
GPXUtilities.writeGpxFile(file, gpx);
|
||||||
|
}
|
||||||
|
return file;
|
||||||
|
}
|
||||||
|
}
|
|
@ -29,6 +29,7 @@ import net.osmand.plus.download.DownloadValidationManager;
|
||||||
import net.osmand.plus.download.IndexItem;
|
import net.osmand.plus.download.IndexItem;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
||||||
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelLocalDataHelper;
|
import net.osmand.plus.wikivoyage.data.TravelLocalDataHelper;
|
||||||
import net.osmand.plus.wikivoyage.explore.travelcards.ArticleTravelCard;
|
import net.osmand.plus.wikivoyage.explore.travelcards.ArticleTravelCard;
|
||||||
import net.osmand.plus.wikivoyage.explore.travelcards.BaseTravelCard;
|
import net.osmand.plus.wikivoyage.explore.travelcards.BaseTravelCard;
|
||||||
|
@ -92,7 +93,7 @@ public class ExploreTabFragment extends BaseOsmAndFragment implements DownloadEv
|
||||||
super.onResume();
|
super.onResume();
|
||||||
OsmandApplication app = getMyApplication();
|
OsmandApplication app = getMyApplication();
|
||||||
if (app != null) {
|
if (app != null) {
|
||||||
app.getTravelDbHelper().getLocalDataHelper().addListener(this);
|
app.getTravelHelper().getLocalDataHelper().addListener(this);
|
||||||
}
|
}
|
||||||
WikivoyageExploreActivity exploreActivity = getExploreActivity();
|
WikivoyageExploreActivity exploreActivity = getExploreActivity();
|
||||||
if (exploreActivity != null) {
|
if (exploreActivity != null) {
|
||||||
|
@ -105,7 +106,7 @@ public class ExploreTabFragment extends BaseOsmAndFragment implements DownloadEv
|
||||||
super.onPause();
|
super.onPause();
|
||||||
OsmandApplication app = getMyApplication();
|
OsmandApplication app = getMyApplication();
|
||||||
if (app != null) {
|
if (app != null) {
|
||||||
app.getTravelDbHelper().getLocalDataHelper().removeListener(this);
|
app.getTravelHelper().getLocalDataHelper().removeListener(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,9 +136,9 @@ public class ExploreTabFragment extends BaseOsmAndFragment implements DownloadEv
|
||||||
public void downloadHasFinished() {
|
public void downloadHasFinished() {
|
||||||
OsmandApplication app = getMyApplication();
|
OsmandApplication app = getMyApplication();
|
||||||
if (app != null) {
|
if (app != null) {
|
||||||
TravelDbHelper travelDbHelper = app.getTravelDbHelper();
|
TravelHelper travelHelper = app.getTravelHelper();
|
||||||
if (travelDbHelper.getSelectedTravelBook() == null) {
|
if (travelHelper.getSelectedTravelBook() == null) {
|
||||||
app.getTravelDbHelper().initTravelBooks();
|
app.getTravelHelper().initTravelBooks();
|
||||||
WikivoyageExploreActivity exploreActivity = getExploreActivity();
|
WikivoyageExploreActivity exploreActivity = getExploreActivity();
|
||||||
if (exploreActivity != null) {
|
if (exploreActivity != null) {
|
||||||
exploreActivity.populateData();
|
exploreActivity.populateData();
|
||||||
|
@ -181,10 +182,10 @@ public class ExploreTabFragment extends BaseOsmAndFragment implements DownloadEv
|
||||||
if (!Version.isPaidVersion(app)) {
|
if (!Version.isPaidVersion(app)) {
|
||||||
items.add(new OpenBetaTravelCard(app, nightMode, fm));
|
items.add(new OpenBetaTravelCard(app, nightMode, fm));
|
||||||
}
|
}
|
||||||
if (app.getTravelDbHelper().getSelectedTravelBook() != null) {
|
if (app.getTravelHelper().getSelectedTravelBook() != null) {
|
||||||
items.add(new HeaderTravelCard(app, nightMode, getString(R.string.popular_destinations)));
|
items.add(new HeaderTravelCard(app, nightMode, getString(R.string.popular_destinations)));
|
||||||
|
|
||||||
List<TravelArticle> popularArticles = app.getTravelDbHelper().getPopularArticles();
|
List<TravelArticle> popularArticles = app.getTravelHelper().getPopularArticles();
|
||||||
for (TravelArticle article : popularArticles) {
|
for (TravelArticle article : popularArticles) {
|
||||||
items.add(new ArticleTravelCard(app, nightMode, article, fm));
|
items.add(new ArticleTravelCard(app, nightMode, article, fm));
|
||||||
}
|
}
|
||||||
|
@ -238,7 +239,7 @@ public class ExploreTabFragment extends BaseOsmAndFragment implements DownloadEv
|
||||||
|
|
||||||
boolean outdated = mainIndexItem != null && mainIndexItem.isOutdated();
|
boolean outdated = mainIndexItem != null && mainIndexItem.isOutdated();
|
||||||
boolean needsDownloading = mainIndexItem != null && !mainIndexItem.isDownloaded();
|
boolean needsDownloading = mainIndexItem != null && !mainIndexItem.isDownloaded();
|
||||||
File selectedTravelBook = app.getTravelDbHelper().getSelectedTravelBook();
|
File selectedTravelBook = app.getTravelHelper().getSelectedTravelBook();
|
||||||
|
|
||||||
if (selectedTravelBook == null || needsDownloading || (outdated && SHOW_TRAVEL_UPDATE_CARD)) {
|
if (selectedTravelBook == null || needsDownloading || (outdated && SHOW_TRAVEL_UPDATE_CARD)) {
|
||||||
boolean showOtherMaps = false;
|
boolean showOtherMaps = false;
|
||||||
|
@ -389,7 +390,7 @@ public class ExploreTabFragment extends BaseOsmAndFragment implements DownloadEv
|
||||||
IndexItem mainItem = app.getDownloadThread().getIndexes().getWikivoyageItem(fileName);
|
IndexItem mainItem = app.getDownloadThread().getIndexes().getWikivoyageItem(fileName);
|
||||||
|
|
||||||
List<IndexItem> neededItems = new ArrayList<>();
|
List<IndexItem> neededItems = new ArrayList<>();
|
||||||
for (TravelArticle article : app.getTravelDbHelper().getLocalDataHelper().getSavedArticles()) {
|
for (TravelArticle article : app.getTravelHelper().getLocalDataHelper().getSavedArticles()) {
|
||||||
LatLon latLon = new LatLon(article.getLat(), article.getLon());
|
LatLon latLon = new LatLon(article.getLat(), article.getLon());
|
||||||
try {
|
try {
|
||||||
for (DownloadActivityType type : types) {
|
for (DownloadActivityType type : types) {
|
||||||
|
|
|
@ -195,7 +195,7 @@ public class SavedArticlesRvAdapter extends RecyclerView.Adapter<RecyclerView.Vi
|
||||||
Object item = getItemByPosition();
|
Object item = getItemByPosition();
|
||||||
if (item != null && item instanceof TravelArticle) {
|
if (item != null && item instanceof TravelArticle) {
|
||||||
final TravelArticle article = (TravelArticle) item;
|
final TravelArticle article = (TravelArticle) item;
|
||||||
final TravelLocalDataHelper ldh = app.getTravelDbHelper().getLocalDataHelper();
|
final TravelLocalDataHelper ldh = app.getTravelHelper().getLocalDataHelper();
|
||||||
ldh.removeArticleFromSaved(article);
|
ldh.removeArticleFromSaved(article);
|
||||||
Snackbar snackbar = Snackbar.make(itemView, R.string.article_removed, Snackbar.LENGTH_LONG)
|
Snackbar snackbar = Snackbar.make(itemView, R.string.article_removed, Snackbar.LENGTH_LONG)
|
||||||
.setAction(R.string.shared_string_undo, new View.OnClickListener() {
|
.setAction(R.string.shared_string_undo, new View.OnClickListener() {
|
||||||
|
|
|
@ -40,7 +40,7 @@ public class SavedArticlesTabFragment extends BaseOsmAndFragment implements Trav
|
||||||
@Override
|
@Override
|
||||||
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
||||||
final OsmandApplication app = requireMyApplication();
|
final OsmandApplication app = requireMyApplication();
|
||||||
dataHelper = app.getTravelDbHelper().getLocalDataHelper();
|
dataHelper = app.getTravelHelper().getLocalDataHelper();
|
||||||
|
|
||||||
final View mainView = inflater.inflate(R.layout.fragment_saved_articles_tab, container, false);
|
final View mainView = inflater.inflate(R.layout.fragment_saved_articles_tab, container, false);
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ import net.osmand.plus.download.DownloadIndexesThread.DownloadEvents;
|
||||||
import net.osmand.plus.wikipedia.WikiArticleHelper;
|
import net.osmand.plus.wikipedia.WikiArticleHelper;
|
||||||
import net.osmand.plus.wikivoyage.article.WikivoyageArticleDialogFragment;
|
import net.osmand.plus.wikivoyage.article.WikivoyageArticleDialogFragment;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
import net.osmand.plus.wikivoyage.data.TravelArticle;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
import net.osmand.plus.wikivoyage.search.WikivoyageSearchDialogFragment;
|
import net.osmand.plus.wikivoyage.search.WikivoyageSearchDialogFragment;
|
||||||
import net.osmand.util.Algorithms;
|
import net.osmand.util.Algorithms;
|
||||||
|
|
||||||
|
@ -199,7 +199,7 @@ public class WikivoyageExploreActivity extends TabActivity implements DownloadEv
|
||||||
String title = WikiArticleHelper.decodeTitleFromTravelUrl(data.getQueryParameter("title"));
|
String title = WikiArticleHelper.decodeTitleFromTravelUrl(data.getQueryParameter("title"));
|
||||||
String selectedLang = data.getQueryParameter("lang");
|
String selectedLang = data.getQueryParameter("lang");
|
||||||
if (!Algorithms.isEmpty(title) && !Algorithms.isEmpty(selectedLang)) {
|
if (!Algorithms.isEmpty(title) && !Algorithms.isEmpty(selectedLang)) {
|
||||||
long articleId = app.getTravelDbHelper().getArticleId(title, selectedLang);
|
long articleId = app.getTravelHelper().getArticleId(title, selectedLang);
|
||||||
if (articleId != 0) {
|
if (articleId != 0) {
|
||||||
WikivoyageArticleDialogFragment.showInstance(app, getSupportFragmentManager(), articleId, selectedLang);
|
WikivoyageArticleDialogFragment.showInstance(app, getSupportFragmentManager(), articleId, selectedLang);
|
||||||
}
|
}
|
||||||
|
@ -333,7 +333,7 @@ public class WikivoyageExploreActivity extends TabActivity implements DownloadEv
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateSearchBarVisibility() {
|
private void updateSearchBarVisibility() {
|
||||||
boolean show = app.getTravelDbHelper().getSelectedTravelBook() != null;
|
boolean show = app.getTravelHelper().getSelectedTravelBook() != null;
|
||||||
findViewById(R.id.search_box).setVisibility(show ? View.VISIBLE : View.GONE);
|
findViewById(R.id.search_box).setVisibility(show ? View.VISIBLE : View.GONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -361,16 +361,16 @@ public class WikivoyageExploreActivity extends TabActivity implements DownloadEv
|
||||||
private static class LoadWikivoyageData extends AsyncTask<Void, Void, Void> {
|
private static class LoadWikivoyageData extends AsyncTask<Void, Void, Void> {
|
||||||
|
|
||||||
private WeakReference<WikivoyageExploreActivity> activityRef;
|
private WeakReference<WikivoyageExploreActivity> activityRef;
|
||||||
private TravelDbHelper travelDbHelper;
|
private TravelHelper travelHelper;
|
||||||
|
|
||||||
LoadWikivoyageData(WikivoyageExploreActivity activity) {
|
LoadWikivoyageData(WikivoyageExploreActivity activity) {
|
||||||
travelDbHelper = activity.getMyApplication().getTravelDbHelper();
|
travelHelper = activity.getMyApplication().getTravelHelper();
|
||||||
activityRef = new WeakReference<>(activity);
|
activityRef = new WeakReference<>(activity);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Void doInBackground(Void... params) {
|
protected Void doInBackground(Void... params) {
|
||||||
travelDbHelper.loadDataForSelectedTravelBook();
|
travelHelper.loadDataForSelectedTravelBook();
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ import net.osmand.plus.base.bottomsheetmenu.SimpleBottomSheetItem;
|
||||||
import net.osmand.plus.base.bottomsheetmenu.simpleitems.DividerHalfItem;
|
import net.osmand.plus.base.bottomsheetmenu.simpleitems.DividerHalfItem;
|
||||||
import net.osmand.plus.base.bottomsheetmenu.simpleitems.TitleItem;
|
import net.osmand.plus.base.bottomsheetmenu.simpleitems.TitleItem;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
import net.osmand.plus.wikivoyage.data.TravelDbHelper;
|
||||||
|
import net.osmand.plus.wikivoyage.data.TravelHelper;
|
||||||
import net.osmand.plus.wikivoyage.data.TravelLocalDataHelper;
|
import net.osmand.plus.wikivoyage.data.TravelLocalDataHelper;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -45,13 +46,13 @@ public class WikivoyageOptionsBottomSheetDialogFragment extends MenuBottomSheetD
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
final CommonPreference<WikiArticleShowImages> showImagesPref = app.getSettings().WIKI_ARTICLE_SHOW_IMAGES;
|
final CommonPreference<WikiArticleShowImages> showImagesPref = app.getSettings().WIKI_ARTICLE_SHOW_IMAGES;
|
||||||
final TravelDbHelper dbHelper = app.getTravelDbHelper();
|
final TravelHelper travelHelper = app.getTravelHelper();
|
||||||
|
|
||||||
items.add(new TitleItem(getString(R.string.shared_string_options)));
|
items.add(new TitleItem(getString(R.string.shared_string_options)));
|
||||||
|
|
||||||
if (dbHelper.getExistingTravelBooks().size() > 1) {
|
if (travelHelper.getExistingTravelBooks().size() > 1) {
|
||||||
BaseBottomSheetItem selectTravelBook = new BottomSheetItemWithDescription.Builder()
|
BaseBottomSheetItem selectTravelBook = new BottomSheetItemWithDescription.Builder()
|
||||||
.setDescription(dbHelper.formatTravelBookName(dbHelper.getSelectedTravelBook()))
|
.setDescription(travelHelper.formatTravelBookName(travelHelper.getSelectedTravelBook()))
|
||||||
.setDescriptionColorId(nightMode ? R.color.wikivoyage_active_dark : R.color.wikivoyage_active_light)
|
.setDescriptionColorId(nightMode ? R.color.wikivoyage_active_dark : R.color.wikivoyage_active_light)
|
||||||
.setIcon(getContentIcon(R.drawable.ic_action_travel))
|
.setIcon(getContentIcon(R.drawable.ic_action_travel))
|
||||||
.setTitle(getString(R.string.shared_string_travel_book))
|
.setTitle(getString(R.string.shared_string_travel_book))
|
||||||
|
@ -125,7 +126,7 @@ public class WikivoyageOptionsBottomSheetDialogFragment extends MenuBottomSheetD
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
OsmandApplication app = getMyApplication();
|
OsmandApplication app = getMyApplication();
|
||||||
if (app != null) {
|
if (app != null) {
|
||||||
TravelLocalDataHelper ldh = app.getTravelDbHelper().getLocalDataHelper();
|
TravelLocalDataHelper ldh = app.getTravelHelper().getLocalDataHelper();
|
||||||
ldh.clearHistory();
|
ldh.clearHistory();
|
||||||
}
|
}
|
||||||
dismiss();
|
dismiss();
|
||||||
|
@ -149,11 +150,11 @@ public class WikivoyageOptionsBottomSheetDialogFragment extends MenuBottomSheetD
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
final TravelDbHelper dbHelper = app.getTravelDbHelper();
|
final TravelHelper travelHelper = app.getTravelHelper();
|
||||||
final List<File> list = dbHelper.getExistingTravelBooks();
|
final List<File> list = travelHelper.getExistingTravelBooks();
|
||||||
String[] ls = new String[list.size()];
|
String[] ls = new String[list.size()];
|
||||||
for (int i = 0; i < ls.length; i++) {
|
for (int i = 0; i < ls.length; i++) {
|
||||||
ls[i] = dbHelper.formatTravelBookName(list.get(i));
|
ls[i] = travelHelper.formatTravelBookName(list.get(i));
|
||||||
}
|
}
|
||||||
|
|
||||||
new AlertDialog.Builder(ctx)
|
new AlertDialog.Builder(ctx)
|
||||||
|
@ -161,7 +162,7 @@ public class WikivoyageOptionsBottomSheetDialogFragment extends MenuBottomSheetD
|
||||||
.setItems(ls, new OnClickListener() {
|
.setItems(ls, new OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
dbHelper.selectTravelBook(list.get(which));
|
travelHelper.selectTravelBook(list.get(which));
|
||||||
sendResult(TRAVEL_BOOK_CHANGED);
|
sendResult(TRAVEL_BOOK_CHANGED);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -91,7 +91,7 @@ public class ArticleTravelCard extends BaseTravelCard {
|
||||||
|
|
||||||
private void updateSaveButton(final ArticleTravelVH holder) {
|
private void updateSaveButton(final ArticleTravelVH holder) {
|
||||||
if (article != null) {
|
if (article != null) {
|
||||||
final TravelLocalDataHelper helper = app.getTravelDbHelper().getLocalDataHelper();
|
final TravelLocalDataHelper helper = app.getTravelHelper().getLocalDataHelper();
|
||||||
final boolean saved = helper.isArticleSaved(article);
|
final boolean saved = helper.isArticleSaved(article);
|
||||||
Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later);
|
Drawable icon = getActiveIcon(saved ? R.drawable.ic_action_read_later_fill : R.drawable.ic_action_read_later);
|
||||||
holder.rightButton.setText(saved ? R.string.shared_string_remove : R.string.shared_string_bookmark);
|
holder.rightButton.setText(saved ? R.string.shared_string_remove : R.string.shared_string_bookmark);
|
||||||
|
@ -103,7 +103,7 @@ public class ArticleTravelCard extends BaseTravelCard {
|
||||||
if (saved) {
|
if (saved) {
|
||||||
helper.removeArticleFromSaved(article);
|
helper.removeArticleFromSaved(article);
|
||||||
} else {
|
} else {
|
||||||
app.getTravelDbHelper().createGpxFile(article);
|
app.getTravelHelper().createGpxFile(article);
|
||||||
helper.addArticleToSaved(article);
|
helper.addArticleToSaved(article);
|
||||||
}
|
}
|
||||||
updateSaveButton(holder);
|
updateSaveButton(holder);
|
||||||
|
|
|
@ -42,7 +42,7 @@ public class WikivoyageWptPtMenuController extends WptPtMenuController {
|
||||||
String title = metadata != null ? metadata.getArticleTitle() : null;
|
String title = metadata != null ? metadata.getArticleTitle() : null;
|
||||||
String lang = metadata != null ? metadata.getArticleLang() : null;
|
String lang = metadata != null ? metadata.getArticleLang() : null;
|
||||||
if (!TextUtils.isEmpty(title) && !TextUtils.isEmpty(lang)) {
|
if (!TextUtils.isEmpty(title) && !TextUtils.isEmpty(lang)) {
|
||||||
return mapActivity.getMyApplication().getTravelDbHelper().getArticle(title, lang);
|
return mapActivity.getMyApplication().getTravelHelper().getArticle(title, lang);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -151,7 +151,7 @@ public class WikivoyageSearchDialogFragment extends WikiBaseDialogFragment {
|
||||||
|
|
||||||
private void setAdapterItems(@Nullable List<WikivoyageSearchResult> items) {
|
private void setAdapterItems(@Nullable List<WikivoyageSearchResult> items) {
|
||||||
if (items == null || items.isEmpty()) {
|
if (items == null || items.isEmpty()) {
|
||||||
TravelLocalDataHelper ldh = getMyApplication().getTravelDbHelper().getLocalDataHelper();
|
TravelLocalDataHelper ldh = getMyApplication().getTravelHelper().getLocalDataHelper();
|
||||||
adapter.setHistoryItems(ldh.getAllHistory());
|
adapter.setHistoryItems(ldh.getAllHistory());
|
||||||
} else {
|
} else {
|
||||||
adapter.setItems(items);
|
adapter.setItems(items);
|
||||||
|
|
|
@ -42,7 +42,7 @@ public class WikivoyageSearchHelper {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isCancelled()) {
|
if (!isCancelled()) {
|
||||||
List<WikivoyageSearchResult> results = application.getTravelDbHelper().search(query);
|
List<WikivoyageSearchResult> results = application.getTravelHelper().search(query);
|
||||||
if (!isCancelled()) {
|
if (!isCancelled()) {
|
||||||
rm.publish(results);
|
rm.publish(results);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue