diff --git a/gradle.properties b/gradle.properties index e76c400042..f86512241a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -44,7 +44,7 @@ SNAPSHOT_REPOSITORY_URL=http://nexus.zhidaoauto.com/repository/maven-snapshots/ USERNAME=xintai PASSWORD=xintai2018 # 编译模式: false - 依赖本地版本, true - 依赖 maven 版本 -USE_MAVEN_PACKAGE=true +USE_MAVEN_PACKAGE=false ##plugin 插件 android.enableR8.libraries=false android.enableR8=false diff --git a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/entrance/EntranceFragment.java b/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/entrance/EntranceFragment.java index 535cdf129c..db86cc6ca5 100644 --- a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/entrance/EntranceFragment.java +++ b/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/entrance/EntranceFragment.java @@ -15,7 +15,6 @@ import static com.mogo.module.share.constant.ShareConstants.VOICE_ALERT_COUNT; import android.content.Intent; import android.graphics.Rect; -import android.location.Location; import android.os.Bundle; import android.os.Handler; import android.os.SystemClock; @@ -48,7 +47,6 @@ import com.mogo.eagle.core.utilcode.mogo.toast.TipToast; import com.mogo.map.listener.IMogoMapListener; import com.mogo.map.listener.MogoMapListenerHandler; import com.mogo.map.navi.IMogoAimlessModeListener; -import com.mogo.map.navi.IMogoCarLocationChangedListener2; import com.mogo.map.navi.IMogoNavi; import com.mogo.map.navi.IMogoNaviListener; import com.mogo.map.navi.MogoNaviInfo; @@ -65,10 +63,7 @@ import com.mogo.module.common.map.Scene; import com.mogo.module.common.view.OnPreventFastClickListener; import com.mogo.module.extensions.R; import com.mogo.module.extensions.navi.AnimNavInfoView; -import com.mogo.module.extensions.navi.BaseNaviInfoView; -import com.mogo.module.extensions.navi.VrModeNavInfoView; import com.mogo.module.extensions.userinfo.UserInfo; -import com.mogo.module.extensions.utils.AdasNoticeHelper; import com.mogo.module.extensions.utils.CameraLiveNoticeHelper; import com.mogo.module.extensions.utils.EntranceViewHolder; import com.mogo.module.extensions.utils.NoMapTopViewShaderHelper; @@ -108,8 +103,7 @@ public class EntranceFragment extends MvpFragment { - DebugConfig.setUseAdasRecognize(!DebugConfig.isUseAdasRecognize()); - TipToast.shortTip(DebugConfig.isUseAdasRecognize()?"Adas识别--打开":"Adas识别--关闭"); - return false; - }); - } - - public void startNav() { - navGroup.setVisibility(View.VISIBLE); - speedGroup.setVisibility(View.GONE); - } - - public void stopNav() { - speedGroup.setVisibility(View.VISIBLE); - navGroup.setVisibility(View.GONE); - } - - public void refreshLimitSpeed(int limitSpeed) { - if (getVisibility() != View.VISIBLE) { - return; - } - handler.removeMessages(MSG_HIDE_LIMIT_SPEED); - tvLimitSpeed.setVisibility(View.VISIBLE); - tvLimitSpeed.setText(String.valueOf(limitSpeed)); - handler.sendEmptyMessageDelayed(MSG_HIDE_LIMIT_SPEED, HIDE_LIMIT_SPEED_DELAY); - } - - @SuppressLint("SetTextI18n") - public void refreshCurrentSpeed(int speed) { - if (speedGroup.getVisibility() == View.VISIBLE) { - tvCurrentSpeed.setText(Integer.toString(speed)); - } - } - - private int[] lightArray = new int[4]; - private String[] surplusTimeArray = new String[4]; - - /** - * 将红绿灯状态全部置灰,相当于隐藏红绿灯状态 - */ - public void hideTrafficLightStatus() { - handler.removeMessages(MSG_HIDE_TRAFFIC_LIGHT); - refreshTrafficLightStatus(new int[]{TRAFFIC_LIGHT_COLOR_GRAY, TRAFFIC_LIGHT_COLOR_GRAY, TRAFFIC_LIGHT_COLOR_GRAY, TRAFFIC_LIGHT_COLOR_GRAY}, new String[]{"", "", "", ""}); - } - - /** - * 刷新红绿灯显示状态 - * - * @param laneLight 固定数组长度为4的车道类型灯,从0-3依次代表 掉头,左转,执行,右转 - * @param surplusTime 固定数组长度为4的剩余时长数组,从0-3依次代表 掉头,左转,执行,右转 - */ - public void refreshTrafficLightStatus(int[] laneLight, String[] surplusTime) { - lightArray = laneLight; - surplusTimeArray = surplusTime; - - turnAroundLight.setTrafficLightStatus(laneLight[0], surplusTime[0]); - turnLeftLight.setTrafficLightStatus(laneLight[1], surplusTime[1]); - straightLight.setTrafficLightStatus(laneLight[2], surplusTime[2]); - turnRightLight.setTrafficLightStatus(laneLight[3], surplusTime[3]); - // todo 再根据当前所在车道,置灰不需关注的灯 - - handler.removeMessages(MSG_HIDE_TRAFFIC_LIGHT); - handler.sendEmptyMessageDelayed(MSG_HIDE_TRAFFIC_LIGHT, HIDE_TRAFFIC_LIGHT_DELAY); - - } - - /** - * 根据所在车道,控制红绿灯展示 - */ - public void refreshLaneStatus() { - - } - - @Override - public void notifyChanged(MogoNaviInfo naviInfo) { - if (naviInfo == null) { - return; - } - fillNextCrossDistance(tvDistance, tvDistanceUnit, naviInfo.getCurStepRetainDistance()); - fillNextCrossIconType(ivTurnIcon, naviInfo.getIconResId()); - tvNextRoad.setText(naviInfo.getNextRoadName()); - } - - @Override - protected void onDetachedFromWindow() { - super.onDetachedFromWindow(); - handler.removeMessages(MSG_HIDE_LIMIT_SPEED); - } - - @Override - public boolean isVisible() { - return navGroup.getVisibility() == View.VISIBLE; - } - - private static final int MSG_HIDE_LIMIT_SPEED = 1001; - private static final long HIDE_LIMIT_SPEED_DELAY = 5000; - - private static final int MSG_HIDE_TRAFFIC_LIGHT = 1002; - private static final long HIDE_TRAFFIC_LIGHT_DELAY = 1000; - - @Override - public boolean handleMessage(Message msg) { - if (!isAttachedToWindow() || getVisibility() != View.VISIBLE) { - return false; - } - if (msg.what == MSG_HIDE_LIMIT_SPEED) { - tvLimitSpeed.setVisibility(View.GONE); - return true; - } else if (msg.what == MSG_HIDE_TRAFFIC_LIGHT) { - hideTrafficLightStatus(); - return true; - } - return false; - } -} diff --git a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/AdasNoticeHelper.java b/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/AdasNoticeHelper.java deleted file mode 100644 index b02a073a22..0000000000 --- a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/AdasNoticeHelper.java +++ /dev/null @@ -1,209 +0,0 @@ -package com.mogo.module.extensions.utils; - -import android.content.BroadcastReceiver; -import android.content.Context; -import android.content.Intent; -import android.content.IntentFilter; -import android.os.Handler; -import android.os.Message; - -import com.mogo.cloud.socket.entity.SocketDownData; -import com.mogo.map.location.IMogoLocationListener; -import com.mogo.eagle.core.data.map.MogoLocation; -import com.mogo.module.common.MogoApisHandler; -import com.mogo.module.extensions.navi.VrModeNavInfoView; -import com.mogo.realtime.socket.IMogoCloudOnMsgListener; -import com.mogo.service.adas.IMogoAdasWarnMessageCallback; -import com.mogo.eagle.core.data.autopilot.MogoADASWarnType; -import com.mogo.eagle.core.data.autopilot.AutopilotWarnMessage; -import com.mogo.utils.logger.Logger; - -import org.json.JSONArray; -import org.json.JSONObject; - -/** - * vr模式下,adas左侧提示框帮助类 - * - * @author tongchenfei - */ -public class AdasNoticeHelper implements IMogoAdasWarnMessageCallback, IMogoLocationListener, - Handler.Callback, IMogoCloudOnMsgListener { - private static final String TAG = "AdasNoticeHelper"; - - private static final int MSG_HIDE_TRAFFIC_LIGHT_BY_OBU = 1001; -// private static final int MSG_HIDE_TRAFFIC_LIGHT_BY_CLOUD = 1002; 先去掉云端下发红绿灯信息 - private static final int MSG_HIDE_LIMIT_SPEED = 1003; -// private static final int MSG_REFRESH_CAR_STRATEGY = 1004; - - private static final long HIDE_TRAFFIC_LIGHT_DELAY = 2_000L; - private static final long HIDE_LIMIT_SPEED_DELAY = 10_000L; - private static final long STRATEGY_DELAY = 1000L; - - private Context context; - private final AdasNoticeReceiver adasReceiver = new AdasNoticeReceiver(); - - private volatile boolean isVrMode = false; - - private int limitSpeed = -1; - private int currentSpeed = 0; - private String lightStatus = "G"; - private String surplusTime; - - private VrModeNavInfoView vrModeNavInfoView; - - private final Handler handler = new Handler(this); - - public void init(Context context) { - this.context = context; - Logger.d(TAG, "init===="); - } - - public void initView(VrModeNavInfoView vrModeNavInfoView) { - this.vrModeNavInfoView = vrModeNavInfoView; - } - - public void enterVrMode() { - Logger.d(TAG, "enterVrMode===" + isVrMode); - if (!isVrMode) { - isVrMode = true; - MogoApisHandler.getInstance().getApis().getAdasControllerApi().closeADAS(); - - IntentFilter filter = new IntentFilter("com.mogo.launcher.adas.app.biz"); - filter.addAction("com.mogo.launcher.adas"); - context.registerReceiver(adasReceiver, filter); - MogoApisHandler.getInstance().getApis().getAdasControllerApi().addAdasWarnMessageCallback(this); - MogoApisHandler.getInstance().getApis().getRegisterCenterApi().registerMogoLocationListener(TAG, this); - // 先不监听服务端下发消息 -// MoGoAiCloudRealTime.registerOnMsgListener(this); - } - } - - public void exitVrMode() { - Logger.d(TAG, "退出vr模式===" + isVrMode); - if (isVrMode) { - isVrMode = false; - MogoApisHandler.getInstance().getApis().getAdasControllerApi().showADAS(); - MogoApisHandler.getInstance().getApis().getAdasControllerApi().removeAdasWarnMessageCallback(this); - MogoApisHandler.getInstance().getApis().getRegisterCenterApi().unregisterMogoLocationListener(TAG); - // 先不监听服务端下发消息 -// MoGoAiCloudRealTime.unRegisterOnMsgListener(this); - context.unregisterReceiver(adasReceiver); - } - } - - @Override - public void onReceiveData(AutopilotWarnMessage msg) { - Logger.d(TAG, "收到adas warn message, isVrMode: " + isVrMode + " msg: " + msg); - if (!isVrMode) { - return; - } - - if (msg.type == MogoADASWarnType.ADAS_WARNING_LIMIT_SPEED) { - // 收到限速信息,更新界面 - limitSpeed = Integer.parseInt(msg.value); - drawLimitSpeed(); - } - } - - private void drawLimitSpeed() { - vrModeNavInfoView.refreshLimitSpeed(limitSpeed); - } - - @Override - public void onLocationChanged(MogoLocation location) { - if (!isVrMode) { - return; - } - currentSpeed = (int) (location.getSpeed() * 3.6F); - } - - @Override - public boolean handleMessage(Message msg) { - switch (msg.what) { - case MSG_HIDE_LIMIT_SPEED: - limitSpeed = -1; - return true; - case MSG_HIDE_TRAFFIC_LIGHT_BY_OBU: - return true; - default: - return false; - } - } - - /** - * 接收智慧驾驶发给adas的展示信息,代替adas做界面展示 - * - * @author tongchenfei - */ - private class AdasNoticeReceiver extends BroadcastReceiver { - @Override - public void onReceive(Context context, Intent intent) { - if (!isVrMode) { - return; - } - String action = intent.getAction(); - if ("com.mogo.launcher.adas".equals(action)) { - // 收到限速信息 - int limit = intent.getIntExtra("adas_speed_limit", -1); - if (limit > 0) { - limitSpeed = limit; - drawLimitSpeed(); - } - } else { - int type = intent.getIntExtra("type", -1); - if (type == 2) { - String obuLightAction = intent.getStringExtra("action"); - if ("1".equals(obuLightAction)) { - // 隐藏红绿灯 - vrModeNavInfoView.hideTrafficLightStatus(); -// handler.removeMessages(MSG_HIDE_TRAFFIC_LIGHT_BY_OBU); -// handler.sendEmptyMessage(MSG_HIDE_TRAFFIC_LIGHT_BY_OBU); - } else { - // 红绿灯处理 - String data = intent.getStringExtra("data"); - if (data != null && !data.isEmpty()) { - try { - JSONObject jsonObject = new JSONObject(data); - String lightStatus = jsonObject.optString("lightStatus"); - String surplusTime = jsonObject.optString("surplusTime"); - if (!lightStatus.isEmpty() && !surplusTime.isEmpty()) { -// String strArray = jsonObject.getString("lightArray"); -// Logger.d(TAG, "strArray: " + strArray); - JSONArray lightJsonArray = jsonObject.getJSONArray("lightArray"); - JSONArray timeJsonArray = jsonObject.getJSONArray("surplusTimeArray"); - int[] lightArray = new int[4]; - String[] surplusTimeArray = new String[4]; - for (int i = 0; i < 4; i++) { - lightArray[i] = lightJsonArray.getInt(i); - surplusTimeArray[i] = timeJsonArray.getString(i); - } - handleObuTrafficLightInfo(lightArray, surplusTimeArray); - } else { - Logger.d(TAG, "红绿灯必要信息都为空,不做展示"); - } - } catch (Exception e) { - Logger.e(TAG, e, "解析adas数据异常"); - e.printStackTrace(); - } - } - } - } - } - } - } - - private void handleObuTrafficLightInfo(int[] lightArray,String[] surplusTimeArray) { - vrModeNavInfoView.refreshTrafficLightStatus(lightArray, surplusTimeArray); - } - - @Override - public void onMsgSend(long id) { - - } - - @Override - public void onMsgReceived(SocketDownData.LauncherSnapshotProto mogoSnapshotSetData) { - - } - -} diff --git a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/CameraLiveNoticeHelper.java b/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/CameraLiveNoticeHelper.java index 4a7061362a..71ecbe85b9 100644 --- a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/CameraLiveNoticeHelper.java +++ b/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/CameraLiveNoticeHelper.java @@ -8,6 +8,7 @@ import android.util.Log; import com.mogo.cloud.socket.entity.SocketDownData; import com.mogo.commons.AbsMogoApplication; +import com.mogo.eagle.core.utilcode.mogo.toast.TipToast; import com.mogo.map.marker.IMogoMarker; import com.mogo.map.marker.IMogoMarkerClickListener; import com.mogo.map.marker.MogoMarkerOptions; @@ -18,12 +19,11 @@ import com.mogo.module.extensions.live.CameraWindow3DAdapter; import com.mogo.module.extensions.live.PushDataType; import com.mogo.realtime.api.MoGoAiCloudRealTime; import com.mogo.realtime.socket.IMogoCloudOnMsgListener; -import com.mogo.eagle.core.utilcode.mogo.toast.TipToast; import com.mogo.utils.logger.Logger; /** - * vr模式下,摄像头消息 AdasNoticeHelper + * vr模式下,摄像头消息 CameraLiveNoticeHelper */ public class CameraLiveNoticeHelper implements IMogoCloudOnMsgListener { private static final String TAG = "CameraLiveNoticeHelper"; @@ -54,7 +54,6 @@ public class CameraLiveNoticeHelper implements IMogoCloudOnMsgListener { } }); -// loadMarker(false); } public void release() { @@ -136,7 +135,7 @@ public class CameraLiveNoticeHelper implements IMogoCloudOnMsgListener { } } - private void renderMarker(SocketDownData.LauncherSnapshotProto obj) { + private void renderMarker(SocketDownData.LauncherSnapshotProto obj) { if (obj != null) { if (obj.getCamera() != null && !TextUtils.isEmpty(obj.getCamera().getRtmpUrl())) { mCloudRoadData = obj.getCamera(); @@ -158,7 +157,8 @@ public class CameraLiveNoticeHelper implements IMogoCloudOnMsgListener { } } else { mCurrentUuid = mCloudRoadData.getUuid(); - if (isVrMode) { // 是否需要延迟 + // 是否需要延迟 + if (isVrMode) { Log.d(TAG, "-------------4------------"); addVrCameraMarker(mCloudRoadData); isVrModeMarker = true; diff --git a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/TopViewAnimHelper.java b/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/TopViewAnimHelper.java index 63d682d408..1769f0eb58 100644 --- a/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/TopViewAnimHelper.java +++ b/modules/mogo-module-extensions/src/main/java/com/mogo/module/extensions/utils/TopViewAnimHelper.java @@ -16,9 +16,7 @@ import com.mogo.module.common.map.MapCenterPointStrategy; import com.mogo.module.common.map.Scene; import com.mogo.module.extensions.ExtensionsModuleConst; import com.mogo.module.extensions.R; -import com.mogo.module.extensions.navi.AnimNavInfoView; import com.mogo.module.extensions.navi.TopView; -import com.mogo.module.extensions.navi.VrModeNavInfoView; import com.mogo.service.windowview.IMogoTopViewStatusListener; import com.mogo.utils.logger.Logger; @@ -38,14 +36,8 @@ public class TopViewAnimHelper { private ConstraintLayout topMotionLayout; private TopView topContainer; - private TextView cameraMode; - private AnimNavInfoView animNavInfoView; - private VrModeNavInfoView vrModeNavInfoView; - private float topHeight = 0f; - private Handler handler = new Handler(); - private TopViewAnimHelper() { } @@ -76,17 +68,10 @@ public class TopViewAnimHelper { topMotionLayout = rootView; topContainer = rootView.findViewById(R.id.module_entrance_id_top_container); topContainer.getLayoutParams().width = (int) getDimen(R.dimen.module_ext_top_view_width); - animNavInfoView = rootView.findViewById(R.id.module_ext_id_anim_nav_info); - vrModeNavInfoView = rootView.findViewById(R.id.module_ext_id_vr_nav_info); - topContainer.setSlideListener(this::startLatestTopOutAnim); - - cameraMode = rootView.findViewById(R.id.module_ext_id_north); // 初始化默认隐藏导航 hideNaviView(); - showStickView(); - } private volatile boolean isTopViewOut = true; @@ -282,9 +267,6 @@ public class TopViewAnimHelper { if (statusListenerMap.get(view) != null) { statusListenerMap.get(view).beforeViewAddAnim(view); } - if (animNavInfoView.isVisible()) { - animNavInfoView.animate().translationY(computeNaviMarginTop(params.height)).start(); - } view.animate().translationY(0).setDuration(500).setListener(new Animator.AnimatorListener() { @Override public void onAnimationStart(Animator animation) { @@ -329,13 +311,7 @@ public class TopViewAnimHelper { NoMapTopViewShaderHelper.getInstance().showShader(); checkCameraModePosition(false); int scene = 0; - if (animNavInfoView.isVisible()) { - scene = Scene.NAVI_WITH_ROAD_EVENT; - animNavInfoView.animate().translationY(computeNaviMarginTop(params.height)).start(); - animNavInfoView.exchangeToSmall(true); - } else { - scene = Scene.AIMLESS_WITH_ROAD_EVENT; - } + scene = Scene.AIMLESS_WITH_ROAD_EVENT; topContainer.animate().translationY(params.height).setListener(mainAnimListener).start(); Logger.d(TAG, "show top setMapCenterPointByScene: " + scene); MapCenterPointStrategy.setMapCenterPointByScene(mogoMapUIController, scene); @@ -386,13 +362,7 @@ public class TopViewAnimHelper { checkCameraModePosition(false); int scene = 0; - if (animNavInfoView.isVisible()) { - animNavInfoView.animate().translationY(0).start(); - animNavInfoView.exchangeToBig(true); - scene = Scene.NAVI; - } else { - scene = Scene.AIMLESS; - } + scene = Scene.AIMLESS; Logger.d(TAG, "hide top setMapCenterPointByScene: " + scene); MapCenterPointStrategy.setMapCenterPointByScene(mogoMapUIController, scene); MogoApisHandler.getInstance().getApis().getStatusManagerApi().setTopViewShow(ExtensionsModuleConst.TYPE_ENTRANCE, false); @@ -405,18 +375,12 @@ public class TopViewAnimHelper { } Logger.d("TopViewAnimHelper", "showNaviView====="); - if (MogoApisHandler.getInstance().getApis().getStatusManagerApi().isVrMode()) { - vrModeNavInfoView.startNav(); - } else { - animNavInfoView.setVisibility(View.VISIBLE); - } + int scene = 0; if (isTopViewOut) { scene = Scene.NAVI_WITH_ROAD_EVENT; - animNavInfoView.exchangeToBig(false); } else { scene = Scene.NAVI; - animNavInfoView.exchangeToSmall(false); } Logger.d(TAG, "navi show setMapCenterPointByScene: " + scene); MapCenterPointStrategy.setMapCenterPointByScene(mogoMapUIController, scene); @@ -429,9 +393,6 @@ public class TopViewAnimHelper { } Logger.d("TopViewAnimHelper", "hideNaviView====="); - animNavInfoView.setTranslationY(0); - animNavInfoView.setVisibility(View.GONE); - vrModeNavInfoView.stopNav(); int scene = 0; if (isTopViewOut) { scene = Scene.AIMLESS; @@ -468,7 +429,7 @@ public class TopViewAnimHelper { /** * 用于和{@link TopViewNoLinkageAnimHelper}互斥显示 - * + *

* 网约车新增与网约车界面互斥 */ public void removeAllViewExceptVrNav() { @@ -494,30 +455,21 @@ public class TopViewAnimHelper { public void removeAllView() { Logger.d(TAG, "remove all view"); removeAllViewExceptVrNav(); - vrModeNavInfoView.setVisibility(View.GONE); } public void clear() { topMotionLayout = null; topContainer = null; - cameraMode = null; - animNavInfoView = null; - vrModeNavInfoView = null; } public void enterVrMode() { removeAllView(); topContainer.getLayoutParams().width = (int) getDimen(R.dimen.module_ext_top_view_width_in_vr_mode); - // vrModeNavInfoView.setVisibility(View.VISIBLE); -// topContainer.requestLayout(); -// topMotionLayout.requestLayout(); } public void exitVrMode() { removeAllView(); topContainer.getLayoutParams().width = (int) getDimen(R.dimen.module_ext_top_view_width); -// topContainer.requestLayout(); -// topMotionLayout.requestLayout(); } private final Animator.AnimatorListener mainAnimListener = new Animator.AnimatorListener() { @@ -543,10 +495,6 @@ public class TopViewAnimHelper { topContainer.removeAllViews(); currentAnimatingView = null; isOuting = false; -// if (motionViewCache != null) { -// startTopInAnim(motionViewCache.view, motionViewCache.params, motionViewCache.statusListener); -// motionViewCache = null; -// } } else { listener = statusListenerMap.get(currentAnimatingView); if (listener != null) { diff --git a/modules/mogo-module-extensions/src/main/res/layout-xhdpi-1920x1000/include_navi_info_panle.xml b/modules/mogo-module-extensions/src/main/res/layout-xhdpi-1920x1000/include_navi_info_panle.xml deleted file mode 100644 index a576d44ca1..0000000000 --- a/modules/mogo-module-extensions/src/main/res/layout-xhdpi-1920x1000/include_navi_info_panle.xml +++ /dev/null @@ -1,236 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/modules/mogo-module-extensions/src/main/res/layout-xhdpi-2000x1080/include_navi_info_panle.xml b/modules/mogo-module-extensions/src/main/res/layout-xhdpi-2000x1080/include_navi_info_panle.xml deleted file mode 100644 index 4383d08193..0000000000 --- a/modules/mogo-module-extensions/src/main/res/layout-xhdpi-2000x1080/include_navi_info_panle.xml +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/modules/mogo-module-extensions/src/main/res/layout/include_navi_info_panle.xml b/modules/mogo-module-extensions/src/main/res/layout/include_navi_info_panle.xml index efa55e9992..4383d08193 100644 --- a/modules/mogo-module-extensions/src/main/res/layout/include_navi_info_panle.xml +++ b/modules/mogo-module-extensions/src/main/res/layout/include_navi_info_panle.xml @@ -23,7 +23,6 @@ android:layout_height="@dimen/module_ext_navi_info_panel_turn_icon_height" android:layout_marginStart="@dimen/module_ext_navi_info_panel_turn_icon_marginLeft" android:scaleType="fitCenter" - android:src="@drawable/ic_11" app:layout_constraintBottom_toBottomOf="@+id/module_map_id_navi_bg" app:layout_constraintLeft_toLeftOf="@+id/module_map_id_navi_bg" app:layout_constraintTop_toTopOf="@+id/module_map_id_navi_bg" /> diff --git a/modules/mogo-module-extensions/src/main/res/layout/module_ext_layout_entrance.xml b/modules/mogo-module-extensions/src/main/res/layout/module_ext_layout_entrance.xml index d10019568d..e43f50be4f 100644 --- a/modules/mogo-module-extensions/src/main/res/layout/module_ext_layout_entrance.xml +++ b/modules/mogo-module-extensions/src/main/res/layout/module_ext_layout_entrance.xml @@ -16,15 +16,6 @@ android:layout_width="match_parent" android:layout_height="wrap_content" /> - - - + app:layout_constraintRight_toRightOf="parent" + tools:ignore="SpeakableTextPresentCheck" /> - -