remove useless changes

This commit is contained in:
Nazar 2019-07-03 16:49:57 +03:00
parent d66d0ab619
commit c7312cc333
9 changed files with 23 additions and 13 deletions

View file

@ -7,8 +7,8 @@
style="?android:attr/listSeparatorTextViewStyle"/> style="?android:attr/listSeparatorTextViewStyle"/>
<TextView android:id="@android:id/summary" <TextView android:id="@android:id/summary"
android:paddingLeft="8dip" android:paddingRight="10dip" android:paddingLeft="@dimen/content_padding_half" android:paddingRight="@dimen/content_padding_half"
android:textColor="#000000" android:textColor="?android:textColorPrimary"
android:layout_width="match_parent" android:layout_height="wrap_content"/> android:layout_width="match_parent" android:layout_height="wrap_content"/>
</LinearLayout> </LinearLayout>

View file

@ -11,10 +11,10 @@
Thx - Hardy Thx - Hardy
--> -->
<string name="wake_on_voice_time">Time</string> <string name="wake_on_voice_time">Time</string>
<string name="wake_on_voice_time_descr">Set the time for which the screen will turn on.</string> <string name="wake_on_voice_time_descr">Set the time for which the screen will turn on.</string>
<string name="wake_on_voice_sensor">Use proximity sensor</string> <string name="wake_on_voice_sensor">Use proximity sensor</string>
<string name="wake_on_voice_sensor_descr">Wave your hand over the top of the screen to turn on the screen while navigating.</string> <string name="wake_on_voice_sensor_descr">Wave your hand over the top of the screen to turn on the screen while navigating.</string>
<string name="app_profile_custom_nav_subtitle"></string> <string name="app_profile_custom_nav_subtitle"></string>
<string name="rate_dialog_descr">Please give us 30 seconds, share feedback and rate our work on Google Play.</string> <string name="rate_dialog_descr">Please give us 30 seconds, share feedback and rate our work on Google Play.</string>
<string name="button_rate">Rate</string> <string name="button_rate">Rate</string>

View file

@ -2262,16 +2262,16 @@ public class OsmandAidlApi {
public interface SearchCompleteCallback { public interface SearchCompleteCallback {
void onSearchComplete(List<SearchResult> resultSet); void onSearchComplete(List<SearchResult> resultSet);
} }
public interface GpxBitmapCreatedCallback { public interface GpxBitmapCreatedCallback {
void onGpxBitmapCreatedComplete(AGpxBitmap aGpxBitmap); void onGpxBitmapCreatedComplete(AGpxBitmap aGpxBitmap);
} }
public interface OsmandAppInitCallback { public interface OsmandAppInitCallback {
void onAppInitialized(); void onAppInitialized();
} }
public interface AMapPointUpdateListener { public interface AMapPointUpdateListener {
void onAMapPointUpdated(AMapPoint point, String layerId); void onAMapPointUpdated(AMapPoint point, String layerId);

View file

@ -498,6 +498,7 @@ public class AppInitializer implements IProgress {
app.travelDbHelper.initTravelBooks(); app.travelDbHelper.initTravelBooks();
} }
app.travelDbHelper = startupInit(app.travelDbHelper, TravelDbHelper.class); app.travelDbHelper = startupInit(app.travelDbHelper, TravelDbHelper.class);
app.lockHelper = startupInit(new LockHelper(app), LockHelper.class); app.lockHelper = startupInit(new LockHelper(app), LockHelper.class);
initOpeningHoursParser(); initOpeningHoursParser();

View file

@ -88,6 +88,7 @@ import net.osmand.plus.dashboard.DashboardOnMap.DashboardType;
import net.osmand.plus.dialogs.CrashBottomSheetDialogFragment; import net.osmand.plus.dialogs.CrashBottomSheetDialogFragment;
import net.osmand.plus.dialogs.RateUsBottomSheetDialogFragment; import net.osmand.plus.dialogs.RateUsBottomSheetDialogFragment;
import net.osmand.plus.dialogs.SendAnalyticsBottomSheetDialogFragment; import net.osmand.plus.dialogs.SendAnalyticsBottomSheetDialogFragment;
import net.osmand.plus.dialogs.RateUsBottomSheetDialog;
import net.osmand.plus.dialogs.WhatsNewDialogFragment; import net.osmand.plus.dialogs.WhatsNewDialogFragment;
import net.osmand.plus.dialogs.XMasDialogFragment; import net.osmand.plus.dialogs.XMasDialogFragment;
import net.osmand.plus.download.DownloadActivity; import net.osmand.plus.download.DownloadActivity;

View file

@ -3,6 +3,7 @@ package net.osmand.plus.activities;
import android.content.Context; import android.content.Context;
import android.content.DialogInterface; import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.DialogInterface.OnMultiChoiceClickListener; import android.content.DialogInterface.OnMultiChoiceClickListener;
import android.content.Intent; import android.content.Intent;
import android.media.AudioManager; import android.media.AudioManager;
@ -16,14 +17,19 @@ import android.preference.PreferenceScreen;
import android.support.annotation.NonNull; import android.support.annotation.NonNull;
import android.support.v7.app.AlertDialog; import android.support.v7.app.AlertDialog;
import android.util.TypedValue; import android.util.TypedValue;
import android.view.ContextThemeWrapper;
import android.view.LayoutInflater;
import android.view.View; import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.widget.ArrayAdapter; import android.widget.ArrayAdapter;
import android.widget.SeekBar;
import android.widget.SeekBar.OnSeekBarChangeListener;
import android.widget.TextView; import android.widget.TextView;
import net.osmand.plus.ApplicationMode; import net.osmand.plus.ApplicationMode;
import net.osmand.plus.ContextMenuAdapter; import net.osmand.plus.ContextMenuAdapter;
import net.osmand.plus.ContextMenuItem; import net.osmand.plus.ContextMenuItem;
import net.osmand.plus.OsmAndFormatter;
import net.osmand.plus.OsmandApplication; import net.osmand.plus.OsmandApplication;
import net.osmand.plus.OsmandSettings; import net.osmand.plus.OsmandSettings;
import net.osmand.plus.OsmandSettings.AutoZoomMap; import net.osmand.plus.OsmandSettings.AutoZoomMap;
@ -38,6 +44,7 @@ import net.osmand.plus.routepreparationmenu.RoutingOptionsHelper;
import net.osmand.plus.routing.RouteProvider.RouteService; import net.osmand.plus.routing.RouteProvider.RouteService;
import net.osmand.plus.voice.CommandPlayer; import net.osmand.plus.voice.CommandPlayer;
import net.osmand.router.GeneralRouter; import net.osmand.router.GeneralRouter;
import net.osmand.router.GeneralRouter.GeneralRouterProfile;
import net.osmand.router.GeneralRouter.RoutingParameter; import net.osmand.router.GeneralRouter.RoutingParameter;
import net.osmand.router.GeneralRouter.RoutingParameterType; import net.osmand.router.GeneralRouter.RoutingParameterType;
import net.osmand.util.Algorithms; import net.osmand.util.Algorithms;

View file

@ -38,6 +38,7 @@ public class SettingsProfileFragment extends BaseOsmAndFragment {
public static final String IS_NEW_PROFILE = "new_profile"; public static final String IS_NEW_PROFILE = "new_profile";
public static final String IS_USER_PROFILE = "user_profile"; public static final String IS_USER_PROFILE = "user_profile";
private ProfileMenuAdapter adapter; private ProfileMenuAdapter adapter;
private RecyclerView recyclerView; private RecyclerView recyclerView;
private LinearLayout addNewProfileBtn; private LinearLayout addNewProfileBtn;