diff --git a/android/src/com/mapswithme/maps/widget/placepage/PlacePageBottomAnimationController.java b/android/src/com/mapswithme/maps/widget/placepage/BottomPlacePageAnimationController.java similarity index 98% rename from android/src/com/mapswithme/maps/widget/placepage/PlacePageBottomAnimationController.java rename to android/src/com/mapswithme/maps/widget/placepage/BottomPlacePageAnimationController.java index 941aff0602..db102ccaf3 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/PlacePageBottomAnimationController.java +++ b/android/src/com/mapswithme/maps/widget/placepage/BottomPlacePageAnimationController.java @@ -21,9 +21,9 @@ import com.mapswithme.maps.widget.placepage.PlacePageView.State; import com.mapswithme.util.UiUtils; import com.mapswithme.util.concurrency.UiThread; -class PlacePageBottomAnimationController extends BasePlacePageAnimationController +class BottomPlacePageAnimationController extends BasePlacePageAnimationController { - private static final String TAG = PlacePageBottomAnimationController.class.getSimpleName(); + private static final String TAG = BottomPlacePageAnimationController.class.getSimpleName(); private final ViewGroup mLayoutToolbar; private final AnimationHelper mAnimationHelper = new AnimationHelper(); @@ -48,7 +48,7 @@ class PlacePageBottomAnimationController extends BasePlacePageAnimationControlle }; } - public PlacePageBottomAnimationController(@NonNull PlacePageView placePage) + public BottomPlacePageAnimationController(@NonNull PlacePageView placePage) { super(placePage); mLayoutToolbar = (LinearLayout) mPlacePage.findViewById(R.id.toolbar_layout); diff --git a/android/src/com/mapswithme/maps/widget/placepage/PlacePageLeftAnimationController.java b/android/src/com/mapswithme/maps/widget/placepage/LeftPlacePageAnimationController.java similarity index 97% rename from android/src/com/mapswithme/maps/widget/placepage/PlacePageLeftAnimationController.java rename to android/src/com/mapswithme/maps/widget/placepage/LeftPlacePageAnimationController.java index 7af8a46810..40f45ec182 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/PlacePageLeftAnimationController.java +++ b/android/src/com/mapswithme/maps/widget/placepage/LeftPlacePageAnimationController.java @@ -11,9 +11,9 @@ import com.mapswithme.maps.MwmActivity; import com.mapswithme.maps.widget.placepage.PlacePageView.State; import com.mapswithme.util.UiUtils; -class PlacePageLeftAnimationController extends BasePlacePageAnimationController +class LeftPlacePageAnimationController extends BasePlacePageAnimationController { - public PlacePageLeftAnimationController(@NonNull PlacePageView placePage) + public LeftPlacePageAnimationController(@NonNull PlacePageView placePage) { super(placePage); } diff --git a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java index 8f67626f74..0e94928639 100644 --- a/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java +++ b/android/src/com/mapswithme/maps/widget/placepage/PlacePageView.java @@ -474,8 +474,8 @@ public class PlacePageView extends RelativeLayout mIsFloating = attrArray.getBoolean(R.styleable.PlacePageView_floating, false); attrArray.recycle(); - mAnimationController = animationType == 0 ? new PlacePageBottomAnimationController(this) - : new PlacePageLeftAnimationController(this); + mAnimationController = animationType == 0 ? new BottomPlacePageAnimationController(this) + : new LeftPlacePageAnimationController(this); } public void restore()