Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorАлександр Зацепин <az@mapswithme.com>2019-09-27 20:27:03 +0300
committeryoksnod <donskdmitry@mail.ru>2019-10-22 15:11:22 +0300
commitf2dd32483744526af64ab7d9e1d65ad5b08f0c4e (patch)
treeb73c7ef8b0cab773f38abe5f620990a3c469d43f /android/src/com/mapswithme/maps/maplayer
parenta953528ce7a46dd8fdcc336a23d6ec443f67abeb (diff)
[android] Migrated code to Android X
Diffstat (limited to 'android/src/com/mapswithme/maps/maplayer')
-rw-r--r--android/src/com/mapswithme/maps/maplayer/BottomSheetItem.java6
-rw-r--r--android/src/com/mapswithme/maps/maplayer/MapLayerCompositeController.java4
-rw-r--r--android/src/com/mapswithme/maps/maplayer/Mode.java2
-rw-r--r--android/src/com/mapswithme/maps/maplayer/ToggleMapLayerDialog.java24
-rw-r--r--android/src/com/mapswithme/maps/maplayer/subway/OnTransitSchemeChangedListener.java4
-rw-r--r--android/src/com/mapswithme/maps/maplayer/subway/SubwayManager.java2
-rw-r--r--android/src/com/mapswithme/maps/maplayer/subway/SubwayMapLayerController.java2
-rw-r--r--android/src/com/mapswithme/maps/maplayer/subway/TransitSchemeState.java2
-rw-r--r--android/src/com/mapswithme/maps/maplayer/traffic/TrafficManager.java4
-rw-r--r--android/src/com/mapswithme/maps/maplayer/traffic/TrafficState.java4
-rw-r--r--android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButton.java2
-rw-r--r--android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButtonController.java4
12 files changed, 29 insertions, 31 deletions
diff --git a/android/src/com/mapswithme/maps/maplayer/BottomSheetItem.java b/android/src/com/mapswithme/maps/maplayer/BottomSheetItem.java
index ccbfb67c70..5398cb1ec6 100644
--- a/android/src/com/mapswithme/maps/maplayer/BottomSheetItem.java
+++ b/android/src/com/mapswithme/maps/maplayer/BottomSheetItem.java
@@ -1,9 +1,9 @@
package com.mapswithme.maps.maplayer;
import android.content.Context;
-import android.support.annotation.DrawableRes;
-import android.support.annotation.NonNull;
-import android.support.annotation.StringRes;
+import androidx.annotation.DrawableRes;
+import androidx.annotation.NonNull;
+import androidx.annotation.StringRes;
import com.mapswithme.maps.R;
import com.mapswithme.util.ThemeUtils;
diff --git a/android/src/com/mapswithme/maps/maplayer/MapLayerCompositeController.java b/android/src/com/mapswithme/maps/maplayer/MapLayerCompositeController.java
index 5e0a51d99b..b359fe8fbf 100644
--- a/android/src/com/mapswithme/maps/maplayer/MapLayerCompositeController.java
+++ b/android/src/com/mapswithme/maps/maplayer/MapLayerCompositeController.java
@@ -1,8 +1,8 @@
package com.mapswithme.maps.maplayer;
import android.app.Activity;
-import android.support.annotation.NonNull;
-import android.support.v7.app.AppCompatActivity;
+import androidx.annotation.NonNull;
+import androidx.appcompat.app.AppCompatActivity;
import android.view.View;
import com.mapswithme.maps.maplayer.subway.SubwayMapLayerController;
diff --git a/android/src/com/mapswithme/maps/maplayer/Mode.java b/android/src/com/mapswithme/maps/maplayer/Mode.java
index e0db7b281c..349919b2eb 100644
--- a/android/src/com/mapswithme/maps/maplayer/Mode.java
+++ b/android/src/com/mapswithme/maps/maplayer/Mode.java
@@ -1,7 +1,7 @@
package com.mapswithme.maps.maplayer;
import android.content.Context;
-import android.support.annotation.NonNull;
+import androidx.annotation.NonNull;
import com.mapswithme.maps.maplayer.subway.SubwayManager;
import com.mapswithme.maps.maplayer.traffic.TrafficManager;
diff --git a/android/src/com/mapswithme/maps/maplayer/ToggleMapLayerDialog.java b/android/src/com/mapswithme/maps/maplayer/ToggleMapLayerDialog.java
index 7a489fcb95..7f8676468e 100644
--- a/android/src/com/mapswithme/maps/maplayer/ToggleMapLayerDialog.java
+++ b/android/src/com/mapswithme/maps/maplayer/ToggleMapLayerDialog.java
@@ -4,17 +4,16 @@ import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.os.Bundle;
-import android.support.annotation.NonNull;
-import android.support.annotation.Nullable;
-import android.support.design.widget.BottomSheetBehavior;
-import android.support.design.widget.BottomSheetDialog;
-import android.support.v4.app.DialogFragment;
-import android.support.v4.app.Fragment;
-import android.support.v4.app.FragmentManager;
-import android.support.v4.app.FragmentTransaction;
-import android.support.v7.app.AppCompatActivity;
-import android.support.v7.widget.LinearLayoutManager;
-import android.support.v7.widget.RecyclerView;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
+import com.google.android.material.bottomsheet.BottomSheetBehavior;
+import com.google.android.material.bottomsheet.BottomSheetDialog;
+import androidx.fragment.app.DialogFragment;
+import androidx.fragment.app.Fragment;
+import androidx.fragment.app.FragmentManager;
+import androidx.appcompat.app.AppCompatActivity;
+import androidx.recyclerview.widget.LinearLayoutManager;
+import androidx.recyclerview.widget.RecyclerView;
import android.util.Pair;
import android.view.LayoutInflater;
import android.view.View;
@@ -26,7 +25,6 @@ import com.mapswithme.maps.R;
import com.mapswithme.maps.adapter.OnItemClickListener;
import com.mapswithme.maps.maplayer.subway.OnSubwayLayerToggleListener;
import com.mapswithme.maps.maplayer.traffic.OnTrafficLayerToggleListener;
-import com.mapswithme.maps.metrics.UserActionsLogger;
import com.mapswithme.maps.widget.recycler.SpanningLinearLayoutManager;
import java.util.Arrays;
@@ -55,7 +53,7 @@ public class ToggleMapLayerDialog extends DialogFragment
private void onShow(@NonNull DialogInterface dialogInterface)
{
BottomSheetDialog dialog = (BottomSheetDialog) dialogInterface;
- View bottomSheet = dialog.findViewById(android.support.design.R.id.design_bottom_sheet);
+ View bottomSheet = dialog.findViewById(com.google.android.material.R.id.design_bottom_sheet);
BottomSheetBehavior behavior = BottomSheetBehavior.from(Objects.requireNonNull(bottomSheet));
behavior.setState(BottomSheetBehavior.STATE_EXPANDED);
}
diff --git a/android/src/com/mapswithme/maps/maplayer/subway/OnTransitSchemeChangedListener.java b/android/src/com/mapswithme/maps/maplayer/subway/OnTransitSchemeChangedListener.java
index 71cda22edf..4b51994761 100644
--- a/android/src/com/mapswithme/maps/maplayer/subway/OnTransitSchemeChangedListener.java
+++ b/android/src/com/mapswithme/maps/maplayer/subway/OnTransitSchemeChangedListener.java
@@ -2,8 +2,8 @@ package com.mapswithme.maps.maplayer.subway;
import android.app.Application;
import android.content.Context;
-import android.support.annotation.MainThread;
-import android.support.annotation.NonNull;
+import androidx.annotation.MainThread;
+import androidx.annotation.NonNull;
import com.mapswithme.maps.content.AbstractContextualListener;
diff --git a/android/src/com/mapswithme/maps/maplayer/subway/SubwayManager.java b/android/src/com/mapswithme/maps/maplayer/subway/SubwayManager.java
index fc320644ef..40f8aa31d6 100644
--- a/android/src/com/mapswithme/maps/maplayer/subway/SubwayManager.java
+++ b/android/src/com/mapswithme/maps/maplayer/subway/SubwayManager.java
@@ -2,7 +2,7 @@ package com.mapswithme.maps.maplayer.subway;
import android.app.Application;
import android.content.Context;
-import android.support.annotation.NonNull;
+import androidx.annotation.NonNull;
import com.mapswithme.maps.Framework;
import com.mapswithme.maps.MwmApplication;
diff --git a/android/src/com/mapswithme/maps/maplayer/subway/SubwayMapLayerController.java b/android/src/com/mapswithme/maps/maplayer/subway/SubwayMapLayerController.java
index d2e38b17c4..150fb77571 100644
--- a/android/src/com/mapswithme/maps/maplayer/subway/SubwayMapLayerController.java
+++ b/android/src/com/mapswithme/maps/maplayer/subway/SubwayMapLayerController.java
@@ -1,6 +1,6 @@
package com.mapswithme.maps.maplayer.subway;
-import android.support.annotation.NonNull;
+import androidx.annotation.NonNull;
import android.view.View;
import android.view.ViewGroup;
diff --git a/android/src/com/mapswithme/maps/maplayer/subway/TransitSchemeState.java b/android/src/com/mapswithme/maps/maplayer/subway/TransitSchemeState.java
index 5b85891ce1..367e6b705c 100644
--- a/android/src/com/mapswithme/maps/maplayer/subway/TransitSchemeState.java
+++ b/android/src/com/mapswithme/maps/maplayer/subway/TransitSchemeState.java
@@ -1,7 +1,7 @@
package com.mapswithme.maps.maplayer.subway;
import android.content.Context;
-import android.support.annotation.NonNull;
+import androidx.annotation.NonNull;
import android.widget.Toast;
import com.mapswithme.maps.R;
diff --git a/android/src/com/mapswithme/maps/maplayer/traffic/TrafficManager.java b/android/src/com/mapswithme/maps/maplayer/traffic/TrafficManager.java
index fd0de9ed79..7b43a332b2 100644
--- a/android/src/com/mapswithme/maps/maplayer/traffic/TrafficManager.java
+++ b/android/src/com/mapswithme/maps/maplayer/traffic/TrafficManager.java
@@ -1,7 +1,7 @@
package com.mapswithme.maps.maplayer.traffic;
-import android.support.annotation.MainThread;
-import android.support.annotation.NonNull;
+import androidx.annotation.MainThread;
+import androidx.annotation.NonNull;
import com.mapswithme.util.log.Logger;
import com.mapswithme.util.log.LoggerFactory;
diff --git a/android/src/com/mapswithme/maps/maplayer/traffic/TrafficState.java b/android/src/com/mapswithme/maps/maplayer/traffic/TrafficState.java
index 52458121b9..69b4be9589 100644
--- a/android/src/com/mapswithme/maps/maplayer/traffic/TrafficState.java
+++ b/android/src/com/mapswithme/maps/maplayer/traffic/TrafficState.java
@@ -1,7 +1,7 @@
package com.mapswithme.maps.maplayer.traffic;
-import android.support.annotation.MainThread;
-import android.support.annotation.NonNull;
+import androidx.annotation.MainThread;
+import androidx.annotation.NonNull;
import com.mapswithme.util.statistics.Statistics;
diff --git a/android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButton.java b/android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButton.java
index f704bb02c7..4b98ed2b27 100644
--- a/android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButton.java
+++ b/android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButton.java
@@ -4,7 +4,7 @@ import android.content.Context;
import android.content.res.Resources;
import android.graphics.drawable.AnimationDrawable;
import android.graphics.drawable.Drawable;
-import android.support.annotation.NonNull;
+import androidx.annotation.NonNull;
import android.view.View;
import android.widget.ImageButton;
import android.widget.RelativeLayout;
diff --git a/android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButtonController.java b/android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButtonController.java
index e032ab5b74..c8ca5cf53a 100644
--- a/android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButtonController.java
+++ b/android/src/com/mapswithme/maps/maplayer/traffic/widget/TrafficButtonController.java
@@ -4,8 +4,8 @@ import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
-import android.support.annotation.NonNull;
-import android.support.annotation.Nullable;
+import androidx.annotation.NonNull;
+import androidx.annotation.Nullable;
import android.widget.Toast;
import com.mapswithme.maps.R;