Update application style

This commit is contained in:
Victor Shcherb 2013-05-09 19:24:30 +02:00
parent c82b9c8393
commit e188f9859c
607 changed files with 41684 additions and 3747 deletions

View file

@ -97,7 +97,6 @@ public class OsmandSettings {
private long lastTimeInternetConnectionChecked = 0;
private boolean internetConnectionAvailable = true;
private List<TileSourceTemplate> internetAvailableSourceTemplates = null;
protected OsmandSettings(ClientContext clientContext) {
@ -659,7 +658,6 @@ public class OsmandSettings {
// this value string is synchronized with settings_pref.xml preference name
public static final String SAVE_CURRENT_TRACK = "save_current_track"; //$NON-NLS-1$
public static final String LOCAL_INDEXES = "local_indexes"; //$NON-NLS-1$
// this value string is synchronized with settings_pref.xml preference name
public final CommonPreference<Boolean> SAVE_TRACK_TO_GPX = new BooleanPreference("save_track_to_gpx", false).makeProfile().cache();
@ -692,9 +690,9 @@ public class OsmandSettings {
// this value string is synchronized with settings_pref.xml preference name
public final CommonPreference<Integer> SAVE_TRACK_INTERVAL = new IntPreference("save_track_interval", 5000).makeProfile();
{
SAVE_TRACK_INTERVAL.setModeDefaultValue(ApplicationMode.CAR, 5000);
SAVE_TRACK_INTERVAL.setModeDefaultValue(ApplicationMode.BICYCLE, 10000);
SAVE_TRACK_INTERVAL.setModeDefaultValue(ApplicationMode.PEDESTRIAN, 30000);
SAVE_TRACK_INTERVAL.setModeDefaultValue(ApplicationMode.CAR, 3000);
SAVE_TRACK_INTERVAL.setModeDefaultValue(ApplicationMode.BICYCLE, 7000);
SAVE_TRACK_INTERVAL.setModeDefaultValue(ApplicationMode.PEDESTRIAN, 10000);
}
// this value string is synchronized with settings_pref.xml preference name
@ -1406,6 +1404,17 @@ public class OsmandSettings {
TRANSPARENT_MAP_THEME.setModeDefaultValue(ApplicationMode.PEDESTRIAN, true);
}
public static final int OSMAND_DARK_THEME = 0;
public static final int OSMAND_LIGHT_THEME = 1;
public static final int OSMAND_LIGHT_DARK_ACTIONBAR_THEME = 2;
public final CommonPreference<Integer> OSMAND_THEME =
new IntPreference("osmand_theme", OSMAND_DARK_THEME).makeGlobal().cache();
public boolean isLightActionBar(){
return OSMAND_THEME.get() == OSMAND_LIGHT_THEME;
}
public final CommonPreference<Boolean> FLUORESCENT_OVERLAYS =
new BooleanPreference("fluorescent_overlays", false).makeGlobal().cache();

View file

@ -387,7 +387,11 @@ public class RoutingContext {
for (RouteDataObject ro : routes) {
for (int i = 0; i < ro.pointsX.length; i++) {
if (ro.getPoint31XTile(i) == x31 && ro.getPoint31YTile(i) == y31) {
excludeDuplications.put(calcRouteId(ro, i), ro);
long id = calcRouteId(ro, i);
if (excludeDuplications.contains(id)) {
continue;
}
excludeDuplications.put(id, ro);
RouteSegment segment = new RouteSegment(ro, i);
segment.next = original;
original = segment;

View file

@ -4,10 +4,7 @@
<meta-data android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIqF3tNGT66etVBn_vgzpfAY1wmIzKV1Ss6Ku-2A" />
<!-- comment change build properties for release & set targetSdkVersion="7", build and reverse changes-->
<!-- <uses-sdk android:minSdkVersion="3"/> -->
<!-- uncomment it to allow different screen supports (large/small)-->
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="4"/>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="16"/>
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.microphone" android:required="false"/>
@ -22,9 +19,10 @@
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
<uses-permission android:name="android.permission.CAMERA"></uses-permission>
<uses-permission android:name="android.permission.RECORD_AUDIO"></uses-permission>
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/OsmandTheme"
<!-- android:theme="@style/OsmandLightDarkActionBarTheme" -->
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:debuggable="true" android:name="net.osmand.plus.OsmandApplication"
android:theme="@style/OsmandDarkTheme"
android:backupAgent="net.osmand.plus.OsmandBackupAgent" android:restoreAnyVersion="true">
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true"/>
@ -65,11 +63,21 @@
</intent-filter>
</receiver>
<activity android:name="net.osmand.plus.activities.SettingsActivity" android:label="@string/settings_activity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.plus.activities.SettingsGeneralActivity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.plus.activities.SettingsNavigationActivity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.plus.monitoring.SettingsMonitoringActivity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.plus.rastermaps.SettingsRasterMapsActivity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.plus.osmedit.SettingsOsmEditingActivity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.plus.extrasettings.SettingsExtraActivity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.plus.development.SettingsDevelopmentActivity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.plus.audionotes.SettingsAudioVideoActivity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.access.SettingsAccessibilityActivity" android:configChanges="keyboardHidden|orientation"></activity>
<activity android:name="net.osmand.plus.activities.search.SearchActivity" android:label="@string/search_activity" ></activity>
<activity android:name="net.osmand.plus.activities.NavigatePointActivity"></activity>
<activity android:name="net.osmand.plus.activities.DownloadIndexActivity" android:configChanges="keyboardHidden|orientation" android:label="@string/local_index_download"></activity>
<activity android:name="net.osmand.plus.activities.ShowRouteInfoActivity" android:label="@string/show_route"></activity>
<activity android:name="net.osmand.plus.activities.FavouritesListActivity"></activity>
<activity android:name="net.osmand.plus.activities.FavouritesListActivity" android:label="@string/favourites_list_activity"></activity>
<activity android:name="net.osmand.plus.activities.FavouritesActivity"></activity>
<activity android:name="net.osmand.plus.activities.PluginsActivity"></activity>
<activity android:name="net.osmand.plus.activities.ContributionVersionActivity" android:configChanges="keyboardHidden|orientation" android:label="@string/contribution_activity"></activity>
@ -78,7 +86,7 @@
<activity android:name="net.osmand.plus.activities.search.SearchPOIActivity" android:label="@string/searchpoi_activity"></activity>
<activity android:name="net.osmand.plus.activities.search.SearchPoiFilterActivity"></activity>
<activity android:name="net.osmand.plus.activities.search.SearchAddressOnlineActivity"></activity>
<activity android:name="net.osmand.plus.activities.search.SearchAddressActivity"></activity>
<activity android:name="net.osmand.plus.activities.search.SearchAddressActivity" android:label="@string/select_address_activity"></activity>
<activity android:name="net.osmand.plus.activities.search.SearchTransportActivity"></activity>
<activity android:name="net.osmand.plus.activities.search.SearchHistoryActivity"></activity>
<activity android:name="net.osmand.plus.activities.search.SearchCityByNameActivity"></activity>
@ -109,7 +117,7 @@
</activity>
<activity android:name="net.osmand.plus.development.TestVoiceActivity"></activity>
<activity android:name="net.osmand.plus.activities.LocalIndexesActivity" android:label="@string/local_index_descr_title"></activity>
<activity android:name="net.osmand.plus.osmedit.LocalOpenstreetmapActivity" android:label="@string/local_openstreetmap_descr_title"></activity>
<activity android:name="net.osmand.plus.osmedit.LocalOpenstreetmapActivity" android:label="@string/local_openstreetmap_act_title"></activity>
<service android:process="net.osmand.plus" android:label="@string/process_navigation_service" android:name="net.osmand.plus.NavigationService">
<intent-filter><action android:name="net.osmand.plus.NavigationService"></action></intent-filter>

View file

@ -10,4 +10,5 @@
# Indicates whether an apk should be generated for each density.
split.density=false
# Project target.
target=android-8
target=android-16
android.library.reference.1=../SherlockBar

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 B

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/bg_striped_img"
android:tileMode="repeat"
android:dither="true" />

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/bg_striped_split_img"
android:tileMode="repeat"
android:dither="true" />

View file

@ -2,11 +2,11 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:background="@color/color_light_gray">
android:orientation="vertical">
<TextView android:id="@+id/message" android:focusable="true"
android:layout_marginLeft="4dp" android:layout_marginRight="4dp"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:textColor="@color/color_black" android:textSize="18sp" android:gravity="fill_horizontal"/>
android:textSize="18sp" android:gravity="fill_horizontal"/>
</LinearLayout>

View file

@ -3,9 +3,9 @@
android:layout_height="wrap_content">
<TextView android:id="@+id/download_tag" android:gravity="center_vertical" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:textSize="18sp"></TextView>
android:layout_weight="1" android:textSize="19sp"></TextView>
<TextView android:id="@+id/download_descr" android:layout_marginLeft="3dp" android:gravity="center_vertical" android:layout_width="105dp"
android:layout_height="wrap_content" android:textSize="18sp" ></TextView>
android:layout_height="wrap_content" android:textSize="19sp" ></TextView>
</LinearLayout>

View file

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<TextView android:id="@+id/Label" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:text="@string/select_build_to_install"></TextView>
<ListView android:id="@android:id/list" android:layout_width="fill_parent" android:layout_weight="1" android:layout_height="wrap_content"
android:layout_marginLeft="3dp" android:layout_marginTop="3dp" android:layout_marginRight="3dp" style="@style/OsmandListView"></ListView>
<Button android:id="@+id/DownloadButton" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:text="@string/download_files"
android:layout_marginLeft = "3dp" android:layout_marginTop ="3dp" android:layout_marginRight = "3dp" android:visibility="gone"/>
</LinearLayout>

View file

@ -5,30 +5,7 @@
android:layout_height="fill_parent"
android:orientation="vertical" >
<!-- TextView android:id="@+id/Label" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:text="@string/select_index_file_to_download"></TextView -->
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:background="@color/titlebar_background">
<ImageButton
android:id="@+id/search_back_button"
android:contentDescription="@string/close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:layout_marginTop="4dp"
android:src="@drawable/arrow_back"
android:text="" />
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_marginLeft = "3dp" android:text="@string/local_index_download" android:layout_gravity="center_vertical|left">
</TextView>
<Spinner
android:id="@+id/SpinnerLocation"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginTop="4dp"
/>
</LinearLayout>
<EditText
android:id="@+id/search_box"
android:layout_width="fill_parent"

View file

@ -1,26 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/group_background" >
<ImageView
android:id="@+id/explist_indicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:paddingLeft="10dp"
android:src="@drawable/expandable_category_unpushed" />
<TextView
android:id="@+id/download_index_category_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="0dp"
android:autoLink="web"
android:gravity="center_vertical"
android:textSize="21sp" >
</TextView>
</LinearLayout>

View file

@ -2,16 +2,6 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"
android:paddingLeft="3dp" android:paddingRight="3dp">
<Button android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_weight="1" android:text="@string/filter_current_poiButton"
android:id="@+id/filter_currentButton"></Button>
<ImageButton android:layout_height="48dp" android:layout_marginLeft="4dp" android:layout_width="48dp" android:src="@drawable/reset"
android:contentDescription="@string/default_buttons_reset"
android:id="@+id/DeleteButton"/>
<ImageButton android:layout_height="wrap_content" android:layout_marginLeft="2dp" android:layout_width="wrap_content" android:src="@drawable/save_btn"
android:id="@+id/SaveButton" android:contentDescription="@string/default_buttons_save"/>
</LinearLayout>
<ListView android:id="@android:id/list" android:layout_width="fill_parent" android:choiceMode="multipleChoice"
android:layout_height="fill_parent" style="@style/OsmandListView"></ListView>
</LinearLayout>

View file

@ -1,27 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/group_background" >
android:layout_height="wrap_content"
android:background="?attr/expandable_category_color">
<ImageView android:src="@drawable/expandable_category_unpushed"
android:id="@+id/explist_indicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:layout_gravity="center_vertical"
/>
<TextView
<ImageView
android:id="@+id/explist_indicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:paddingLeft="10dp"
android:src="@drawable/expandable_category_unpushed" />
<TextView
android:id="@+id/category_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="0dp"
android:autoLink="web"
android:gravity="center_vertical"
android:paddingLeft="10dp"
android:textSize="24sp" >
android:textSize="22sp">
</TextView>
<LinearLayout
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="right" >
@ -34,5 +36,6 @@
android:gravity="center_vertical"
android:visibility="gone" />
</LinearLayout>
</LinearLayout>

View file

@ -5,54 +5,7 @@
android:orientation="vertical"
>
<LinearLayout
android:id="@+id/LoadingPanel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:visibility="gone" >
<LinearLayout
android:id="@+id/FillLayoutStart"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
<Button
android:id="@+id/ActionButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="3dp"
android:layout_marginRight="3dp"
android:layout_marginTop="3dp"
android:text="@string/default_buttons_delete"
android:visibility="gone" />
<Button
android:id="@+id/CancelButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="3dp"
android:layout_marginRight="3dp"
android:layout_marginTop="3dp"
android:text="@string/default_buttons_cancel"
android:visibility="gone" />
<LinearLayout
android:id="@+id/FillLayoutEnd"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1" />
<ProgressBar
android:id="@+id/ProgressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:indeterminate="true"
android:visibility="gone" />
</LinearLayout>
<ExpandableListView
android:id="@android:id/list"

View file

@ -2,6 +2,5 @@
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:textSize="20sp" android:textStyle="bold"
style="@style/Widget.DropDownItem">
android:layout_height="wrap_content" android:textSize="20sp" android:textStyle="bold">
</TextView>

View file

@ -4,24 +4,9 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<TextView android:id="@+id/DescriptionTextTop" android:layout_width="fill_parent" android:layout_height="wrap_content"
android:text="" android:layout_marginLeft = "10dp" android:layout_marginRight = "10dp"
android:visibility="gone"/>
<LinearLayout android:id="@+id/LoadingPanel" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="3dp">
<!-- Button android:id="@+id/DownloadButton" android:layout_width="wrap_content" android:layout_gravity="right" android:layout_height="wrap_content" android:text="@string/local_index_download"
android:layout_marginLeft = "3dp" android:layout_marginTop ="3dp" android:layout_marginRight = "3dp"/-->
<TextView android:id="@+id/DescriptionText" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:layout_marginLeft="10dp"
<TextView android:id="@+id/DescriptionText" android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_marginLeft="10dp" android:layout_marginTop="3dp"
android:layout_marginRight="10dp" android:text="@string/download_link_and_local_description"/>
<LinearLayout android:id="@+id/FillLayoutStart" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:visibility="gone"/>
<Button android:id="@+id/ActionButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/local_index_download"
android:layout_marginLeft = "3dp" android:layout_marginTop ="3dp" android:layout_marginRight = "3dp" android:visibility="gone"/>
<Button android:id="@+id/CancelButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/default_buttons_cancel"
android:layout_marginLeft = "3dp" android:layout_marginTop ="3dp" android:layout_marginRight = "3dp" android:visibility="gone"/>
<LinearLayout android:id="@+id/FillLayoutEnd" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:visibility="gone"/>
<ProgressBar android:id="@+id/ProgressBar" android:layout_marginLeft="5dp" android:indeterminate="true" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_marginRight="5dp"/>
</LinearLayout>
<ExpandableListView
android:id="@android:id/list"

View file

@ -8,7 +8,7 @@ android:orientation="vertical">
android:gravity="center_vertical" android:focusable="false"/>
</LinearLayout>
<TextView android:id="@+id/local_index_name" android:gravity="center_vertical" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:textSize="20sp" android:layout_marginLeft="8dp"></TextView>
android:layout_weight="1" style="@style/ListText.Small" android:layout_marginLeft="8dp"></TextView>
<TextView android:id="@+id/local_index_size" android:layout_marginLeft="3dp" android:gravity="center_vertical" android:layout_width="75dp"
android:layout_height="wrap_content" android:textSize="16sp" ></TextView>

View file

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/group_background" >
<ImageView
android:id="@+id/explist_indicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:paddingLeft="10dp"
android:src="@drawable/expandable_category_unpushed" />
<TextView
android:id="@+id/local_index_category_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="0dp"
android:gravity="center_vertical"
android:textSize="21sp" >
</TextView>
</LinearLayout>

View file

@ -4,10 +4,6 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<LinearLayout android:id="@+id/UploadAll" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="3dp">
<Button android:id="@+id/UploadAllButton" android:layout_width="wrap_content" android:layout_gravity="right" android:layout_height="wrap_content" android:text="@string/local_openstreetmap_uploadall"
android:layout_marginLeft = "3dp" android:layout_marginTop ="3dp" android:layout_marginRight = "3dp"/>
</LinearLayout>
<ListView android:id="@android:id/list" android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_marginLeft="3dp" android:layout_marginTop="3dp" android:layout_marginRight="3dp" ></ListView>

View file

@ -3,5 +3,5 @@
android:orientation="vertical">
<TextView android:id="@+id/local_openstreetmap_name" android:gravity="center_vertical" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_weight="1" android:textSize="20sp" android:layout_marginLeft="8dp"></TextView>
android:layout_weight="1" style="@style/ListText.Small" android:layout_marginLeft="8dp"></TextView>
</LinearLayout>

View file

@ -1,18 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/group_background">
<ImageView
android:src="@drawable/expandable_category_unpushed"
android:id="@+id/explist_indicator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:paddingLeft="10dp"
/>
<TextView android:id="@+id/local_openstreetmap_category_name" android:gravity="center_vertical" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:textSize="21sp" android:layout_marginLeft="10dp"></TextView>
</LinearLayout>

View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView android:id="@+id/spinnerText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:singleLine="true"
style="@style/OsmandSpinner"
xmlns:android="http://schemas.android.com/apk/res/android"/>

View file

@ -21,7 +21,7 @@
<TextView android:textSize="20sp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:text="@string/navigate_point_format"></TextView>
<Spinner android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/Format" android:layout_marginLeft="5dp" android:layout_marginRight="5dp" ></Spinner>
</TableRow>
<TextView android:id="@+id/ValidateTextView" android:textSize="16sp" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" android:gravity="center" android:textColor="@color/color_red"></TextView>
<TextView android:id="@+id/ValidateTextView" android:textSize="16sp" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="" android:gravity="center" android:textColor="@color/color_invalid"></TextView>
</TableLayout>
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center">

View file

@ -2,11 +2,11 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:background="@color/color_light_gray">
android:orientation="vertical">
<net.osmand.access.NotificationTextView android:id="@+id/message"
android:layout_marginLeft="4dp" android:layout_marginRight="4dp"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:textColor="@color/color_black" android:textSize="18sp" android:gravity="fill_horizontal"/>
android:textSize="18sp" android:gravity="fill_horizontal"/>
</LinearLayout>

View file

@ -7,7 +7,5 @@
<TextView android:id="@+id/Label" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:text="@string/select_plugin_to_activate"></TextView>
<ListView android:id="@android:id/list" android:layout_width="fill_parent" android:layout_weight="1" android:layout_height="wrap_content"
android:layout_marginTop="3dp" style="@style/OsmandListView"></ListView>
<Button android:id="@+id/DownloadButton" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:text="@string/download_files"
android:layout_marginLeft = "3dp" android:layout_marginTop ="3dp" android:layout_marginRight = "3dp" android:visibility="gone"/>
android:layout_marginTop="3dp"></ListView>
</LinearLayout>

View file

@ -10,16 +10,17 @@
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingLeft="5dp"
>
<CheckBox android:id="@+id/check_item" android:focusable="false" android:gravity="top"
android:layout_width="48dp"
android:layout_height="48dp"/>
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
<TextView
android:id="@+id/plugin_name"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textSize="20sp" android:text="@string/extra_settings"
android:gravity="center_vertical" android:paddingLeft="5dp" android:paddingRight="10dp">
android:textColor="?android:textColorPrimary"
style="@style/ListText.Small" android:text="@string/extra_settings"
android:paddingLeft="5dp" android:paddingRight="10dp">
</TextView>
</LinearLayout>
<TextView
@ -29,7 +30,7 @@
android:visibility="gone"
android:maxLines="7"
android:text="@string/osmand_extra_settings_description"
android:textColor="@color/color_light_gray"
android:textColor="?android:textColorSecondary"
android:textSize="14sp" android:paddingLeft="10dp" android:paddingRight="10dp">
</TextView>

View file

@ -7,9 +7,6 @@
android:layout_height="wrap_content" android:orientation="vertical" android:gravity="center_horizontal">
<TextView android:id="@+id/TopTextView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center_horizontal"
android:layout_marginTop = "5dp" android:text="@string/search_address_top_text">
</TextView>
<net.osmand.view.ExpandableLinearLayout custom:maxVisibleWidth="800dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" >
<TableLayout android:id="@+id/TableLayout" android:layout_width="fill_parent" android:stretchColumns="1" android:layout_height="wrap_content" >

View file

@ -3,8 +3,6 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<TextView android:id="@+id/TextView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center_horizontal"
android:layout_marginTop = "5dp" android:text="@string/search_osm_offline"/>
<ListView android:id="@android:id/list" android:layout_width="fill_parent" android:layout_weight="1" android:layout_height="wrap_content" style="@style/OsmandListView"></ListView>

View file

@ -4,20 +4,19 @@
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/TextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:gravity="center_horizontal"
android:text="@string/search_osm_nominatim" />
<LinearLayout
android:id="@+id/LinearLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="5dp"
android:layout_marginTop="5dp" >
<ProgressBar
android:id="@+id/ProgressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="invisible">
</ProgressBar>
<EditText
android:id="@+id/SearchText"

View file

@ -1,40 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
<TabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:background="@color/titlebar_background">
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageButton
android:id="@+id/search_back_button"
android:contentDescription="@string/close"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:layout_marginTop="4dp"
android:src="@drawable/arrow_back"
android:text="" />
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_marginLeft = "3dp" android:text="@string/select_search_position" android:layout_gravity="center_vertical|left">
</TextView>
<Spinner
android:id="@+id/SpinnerLocation"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginTop="4dp"
/>
</LinearLayout>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp"/>
<LinearLayout
android:layout_weight="0"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
@ -48,9 +30,18 @@
android:text="@string/poi_search_desc"
android:textAppearance="?android:attr/textAppearanceSmall"/>
</LinearLayout>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
android:layout_width="0dp"
android:layout_height="0dp"
/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
</TabHost>

View file

@ -3,5 +3,5 @@
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView android:id="@+id/NameLabel" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:textSize="22sp"/>
android:layout_height="fill_parent" style="@style/ListText.Small"/>
</LinearLayout>

View file

@ -8,6 +8,6 @@
android:paddingTop="0dp" />
<TextView android:id="@+id/poi_label" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:textSize="22sp" />
android:layout_height="wrap_content" style="@style/ListText.Small"/>
</LinearLayout>

View file

@ -7,7 +7,7 @@
android:paddingLeft="8dp" android:paddingRight="8dp"
android:paddingTop="2dp" android:layout_height="fill_parent" />
<TextView android:id="@+id/folder_label" android:layout_width="wrap_content" android:layout_weight="1"
android:layout_height="wrap_content" style="@style/ListText"/>
android:layout_height="wrap_content" style="@style/ListText.Small"/>
<ImageView android:id="@+id/folder_edit_icon"
android:paddingLeft="4dp" android:paddingRight="8dp" android:src="@android:drawable/ic_input_get"

View file

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:orientation="vertical" android:background="@color/color_light_gray">
android:layout_height="fill_parent" android:orientation="vertical" >
<net.osmand.access.ExplorableTextView android:text="" android:id="@+id/TipDescription" android:layout_marginLeft="4dp" android:scrollbars="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginRight="4dp" android:layout_weight="1"
android:textColor="@color/color_black" android:textSize="18sp" android:gravity="fill_horizontal"
android:background= "@drawable/textlines" />
android:textSize="18sp" android:gravity="fill_horizontal"
/>
<!-- <TextView android:text="@string/poi_dialog_other_tags_message" android:id="@+id/TextView" android:layout_marginLeft="5dp"
android:layout_width="fill_parent" android:layout_height="wrap_content" /> -->

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/titlebar_background"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/back_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_gravity="top"
android:src="@drawable/arrow_back"
android:text="" />
<net.osmand.plus.activities.FontFitTextView
android:id="@+id/title_text"
style="@style/WhiteTitleText"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:paddingTop="3dp"
android:layout_marginLeft="7dp"
android:layout_marginRight="5dp"
android:layout_toLeftOf="@+id/title_image"
android:layout_toRightOf="@+id/back_button"
android:text="@string/favourites_activity" />
<ImageView
android:id="@+id/title_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="16dp"
android:layout_gravity="top"
android:src="@drawable/tab_search_favorites_icon" />
</RelativeLayout>

View file

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/titlebar_background"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/back_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_gravity="top"
android:src="@drawable/arrow_back"
android:layout_marginTop="4dp"
android:text="" />
<net.osmand.plus.activities.FontFitTextView
android:id="@+id/title_text"
style="@style/WhiteTitleText"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:paddingTop="3dp"
android:layout_marginLeft="7dp"
android:layout_marginRight="7dp"
android:layout_toLeftOf="@+id/title_image"
android:layout_toRightOf="@+id/back_button"
android:text="@string/favourites_activity" />
<ImageButton
android:id="@+id/title_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_gravity="top"
android:layout_marginTop="4dp"
/>
</RelativeLayout>

View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/android">
<group android:menuCategory="container" android:id="@+id/edit_filter_context_menu">
<item android:title="@string/edit_filter_save_as_menu_item" android:id="@+id/edit_filter_save_as" android:icon="@android:drawable/ic_menu_save"></item>
<item android:title="@string/edit_filter_delete_menu_item" android:id="@+id/edit_filter_delete" android:icon="@android:drawable/ic_menu_delete"></item>
</group>
</menu>

View file

@ -76,7 +76,7 @@
<string name="safe_mode">Безопасный режим</string>
<string name="native_library_not_running">Приложение запущено в безопасном режиме (отключите в Настройках).</string>
<string name="background_service_is_enabled_question">Фоновый режим все еще запущен. Вы хотите отменить его?</string>
<string name="tip_recent_changes_1_0_0_t">"Изменения в 1.0.0 : \n\t* Улучшенная навигация: быстрее и расчёт до 250 км \n\t* Новые компактные карты (исключительно дороги) \n\t* Карта не теряет позицию после прерываний в работе \n\t* Включённый фоновый режим в навигации "</string>
<string name="tip_recent_changes_1_0_0_t">"Изменения в 1.0.0 : \n\t* Улучшенная навигация: быстрее и расчёт до 250 км \n\t* Новые компактные карты (исключительно дороги) \n\t* Карта не теряет позицию после прерываний в работе \n\t* Включённый фоновый режим в навигации "</string>
<string name="close_changeset">Закрыть changeset</string>
<string name="zxing_barcode_scanner_not_found">Приложение \'Сканнер штрих-кодов\' не найдено. Искать на Маркете?</string>
<string name="non_optimal_route_calculation">Быстрое построение маршрута (возможно неоптимально)</string>
@ -116,14 +116,14 @@
<string name="osmand_development_plugin_description">Этот плагин предоставляет такие возможности для отладки и разработки, как моделирование навигации или отображение производительности отрисовки.</string>
<string name="plugins_screen">Диспетчер плагинов</string>
<string name="select_plugin_to_activate">Выберите плагин, чтобы активировать или отключить его (может понадобиться перезагрузка приложения)</string>
<string name="prefs_plugins_descr">Плагины предоставляют дополнительные возможности приложения, такие, как запись маршрутов, поддержка онлайн карт, действия, выполняемые в фоновом режиме, настройки дополнительных возможностей (accessibility), и другие.</string>
<string name="prefs_plugins_descr">Плагины активируют дополнительные возможности приложения</string>
<string name="prefs_plugins">Диспетчер плагинов</string>
<string name="tip_recent_changes_0_8_0_t">"Изменения в 0.8.0:\n\n\t *Поддержка плагинов* \t - Большая часть функциональности разделена на плагины и может быть включена/выключена в Менеджере плагинов. Там вы можете активировать выбор растровых карт, настроек мониторинга и другие, новые и ранее существующие, возможности. \t *Новый формат карт* \t - Отрисовка карт стала быстрее и более точной (решено большинство проблем прибрежной зоны).\n\n\t - Вам понадобится полностью обновить локальные карты (старый формат больше не поддерживается и может быть удален) \t *Автономная прокладка маршрута*\n\n\t - Автономная прокладка маршрута стала гораздо стабильней и работает на более дальние расстояния \t *Графический интерфейс и взаимодействие* \t - Улучшено во многих направлениях "</string>
<string name="osm_editing_plugin_description">Плагин для работы с OSM. Позволяет создавать и редактировать POI, создавать и комментировать неточности OSM Bugs, выгружать треки GPX (требует учётные данные OSM).</string>
<string name="vector_maps_may_display_faster_on_some_devices">Векторные карты могут отображаться быстрее. Поддерживается не всеми устройствами.</string>
<string name="simulate_route_progression_manually">Вручную смоделировать движение по маршруту</string>
<string name="play_commands_of_currently_selected_voice">Воспроизвести команды выбранным голосом</string>
<string name="debugging_and_development">Отладка и разработка OsmAnd</string>
<string name="debugging_and_development">Отладка и разработка</string>
<string name="native_rendering">Быстрый рендеринг</string>
<string name="animate_routing">Смоделировать движение по маршруту</string>
<string name="test_voice_prompts">Протестировать голосовые подсказки</string>
@ -347,8 +347,8 @@
<string name="tip_map_context_menu_t">"онтекстное меню карты доступно по долгому нажатию на карту или при нажатии кнопки трекбола.\n\n\tПосле этого появится окно с координатами, при нажатии на него откроется меню, при долгом нажатии - окно пропадёт. Также контекстное меню доступно по кнопке Меню на карте.\n\n\tДействия в этом меню зависят от текущей выбранной точки (центр карты). "</string>
<string name="tip_initial">Советы по использованию</string>
<string name="tip_initial_t">"\tOsmAnd - навигационное приложение с большим количеством функций.\n\n\tЧтобы использовать его как можно лучше, следуйте советам по ссылке вверху меню. "</string>
<string name="next_button">Следующий</string>
<string name="previous_button">Предыдущий</string>
<string name="next_button">След.</string>
<string name="previous_button">Пред.</string>
<string name="unit_of_length_descr">Изменить единицы измерения длины и скорости</string>
<string name="unit_of_length">Единицы измерения</string>
<string name="si_mi_foots">Мили/футы</string>
@ -916,7 +916,7 @@
<string name="tip_location_sharing_t">"\tТеперь Вы можете поделиться местоположением интересных мест.\n\n\tЧтобы поделиться текущим местоположением используйте меню -&gt; \'Опции\' -&gt; \'Контекстное меню\' -&gt; \'Поделиться местоположением\'.\n\n\tЧтобы переслать местоположение точки на карте выделите эту точку долгим нажатием -&gt; нажмите на появившуюся кнопку с координатами -&gt; \'Поделиться местоположением\'.\n\n\tПоддерживаемые способы передачи местоположения:\n\n\tE-Mail,\n\n\tSMS - текстовое сообщение,\n\n\tClipboard - скопировать координаты в буфер обмена. "</string>
<string name="tip_favorites">Избранные точки</string>
<string name="tip_favorites_t">"\tЧасто используемые точки могут быть сохранены в \"Избранное\" \tЧтобы сохранить точку в \"Избранное\" откройте контекстное меню карты, выберите пункт \'Добавить в избранное\' и введите имя для этой точки. После сохранения, эта точка будет доступна через \"Главное меню\" -&gt; \"Избранное\".\n\n\tДолгое нажатие на точку в \"Избранное\" позволяет установить её как место назначения, редактировать или удалить её.\n\n\tЧтобы отобразить все избранные точки на карте, включите слой \'Избранное\' в \'Контекстное меню карты\' -&gt;\'Слои\'. "</string>
<string name="contribution_activity">Специальное действие для платной версии</string>
<string name="contribution_activity">Установка версии</string>
<string name="process_navigation_service">Навигационный сервис OsmAnd</string>
<string name="offline_navigation_not_available">Локальная навигация OsmAnd временно недоступна.</string>
<string name="left_side_navigation">Левосторонняя навигация</string>
@ -1044,7 +1044,7 @@
<string name="map_widget_renderer">Стиль отрисовки (векторн.)</string>
<string name="live_monitoring_mode_off">Включить слежение
\nв реальном времени</string>
<string name="live_monitoring_mode_on">Выключить\n слежение в реальном времени</string>
<string name="live_monitoring_mode_on">Выключить\n слежение в реальном времени</string>
<string name="tip_rotation_switching_t_v2">"\tНажав на значок компаса на экране с картой Вы можете изменить режим вращения карты.\n\n\tДоступные варианты:\n\n\t*\'Не вращать\' - Карта не будет вращаться. Север всегда сверху.\n\n\t*\'По направлению движения\' - Карта будет вращаться в соответствии с направлением Вашего движения. Сверху - направление движения.\n\n\t*\'По направлению компаса\' - Карта будет вращаться так, чтобы совместить север карты и северное направление (используются показания компаса в устройстве). "</string>
<string name="tip_map_switch_t_v2">"\tОтображаемые карты и слои можно изменить выбрав \'Настройка вида\' (значок глобуса) на экране карты.\n\n\tВ \'Источник карты…\' можно выбрать предварительно загруженные векторные карты, онлайн-карты от различных источников (для использования включите плагин \'Онлайн карты\'), или самостоятельно созданные карты (при помощи OsmAndMapCreator для ПК, например).\n\n\tOsmAnd также поддерживает пользовательские источники. "</string>

View file

@ -3,4 +3,7 @@
<declare-styleable name="ExpandableView">
<attr name="maxVisibleWidth" format="dimension"/>
</declare-styleable>
<declare-styleable name="OsmAndTheme">
<attr name="expandable_category_color" format="reference"/>
</declare-styleable>
</resources>

View file

@ -1,20 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="titlebar_background">#444444</color>
<color name="group_background">#333333</color>
<color name="activity_background">#5B5B5B</color>
<color name="list_separator">#494949</color>
<color name="activity_text">#FFFFFF</color>
<color name="menu_background">#FF9030</color>
<color name="color_light_gray">#d7d7d7</color>
<color name="color_transparent">#00000000</color>
<!-- style colors -->
<color name="group_background">#A5A5A5</color>
<!-- <color name="activity_background">#666666</color> -->
<!-- Distance to object suitable for all themes -->
<color name="color_distance">#FD9822</color>
<!-- Old dialogs colors -->
<color name="color_white">#FFFFFF</color>
<color name="color_black">#000000</color>
<color name="color_transparent">#00000000</color>
<color name="color_white">#FFFFFF</color>
<color name="color_red">#FF0000</color>
<color name="color_orange">#FD9822</color>
<color name="color_distance">#FD9822</color>
<!-- Themed color list items -->
<!-- invalid -red, localindex not supported, -->
<color name="color_invalid">#EE3232</color>
<!-- warning -red, localindex is corrupted, poi closed, osm_delete -->
<color name="color_warning">#EE3232</color>
<!-- normal state, localindex unknown, poi unknown, index_unknown -->
<color name="color_unknown">#C8C8C8</color>
<!-- good state, localindex loaded, poi_open, osm_create, index_ok -->
<color name="color_ok">#32CD32</color>
<!-- update good state, osm_modify, index_update -->
<color name="color_update">#0080FF</color>
<!-- Map colors -->
<!-- LAYER and SPECIAL PURPOSE consistency colors -->
<color name="gpx_track">#B4B319FF</color>
@ -33,32 +44,12 @@
<color name="nav_arrow_imminent">#2EFF00</color>
<color name="nav_arrow_distant">#C0C0C0</color>
<color name="nav_point">#FA5050</color>
<color name="index_unknown">#FFFFFF</color> <!-- standard WHITE -->
<color name="act_index_uptodate">#00FF00</color> <!-- standard GREEN -->
<color name="act_index_updateable">#0080FF</color> <!-- modified BLUE because of grey background -->
<!-- Try fix Issue 1482: Use italic instead of dark colors for deactivated maps -->
<!-- color name="deact_index_uptodate">#003C00</color --> <!-- DARK_GREEN -5 shades, related to above! -->
<!-- color name="deact_index_updateable">#00008B</color --> <!-- DARK_BLUE, related to above! -->
<color name="localindex_notsupported">#FF0000</color> <!-- standard RED -->
<color name="localindex_iscorrupted">#FF00FF</color> <!-- standard MAGENTA -->
<color name="localindex_isloaded">#00FF00</color> <!-- standard GREEN -->
<color name="localindex_unknown">#C0C0C0</color> <!-- standard LTGRAY -->
<color name="poi_background">#A0FF8000</color>
<color name="poi_open">#32CD32</color> <!-- GREEN/RED is intuitive for open/closed -->
<color name="poi_closed">#EE3232</color>
<color name="poi_direction">#6400FF</color>
<color name="poi_unknown_arrow">#C8C8C8</color>
<color name="transport_stop">#960000FF</color>
<color name="transport_int">#9632C832</color>
<color name="transport_end">#96FF0000</color>
<color name="osm_create">#00FF00</color> <!-- standard GREEN -->
<color name="osm_modify">#FF00FF</color> <!-- standard MAGENTA -->
<color name="osm_delete">#FF0000</color> <!-- standard RED -->
<color name="osmbug_opened">#C8FF0000</color> <!-- standard RED -->
<color name="osmbug_closed">#C800FF00</color> <!-- standard GREEN -->

Some files were not shown because too many files have changed in this diff Show more