This commit is contained in:
zhongchao
2021-04-06 15:25:35 +08:00
parent 708144401f
commit 42d0048581
3 changed files with 15 additions and 9 deletions

View File

@@ -155,19 +155,19 @@ LOGLIB_VERSION = 1.0.4
######## MogoAiCloudSDK Version
# 网络请求
MOGO_NETWORK_VERSION=1.0.62
MOGO_NETWORK_VERSION=1.0.63
# 鉴权
MOGO_PASSPORT_VERSION=1.0.62
MOGO_PASSPORT_VERSION=1.0.63
# 常链接
MOGO_SOCKET_VERSION=1.0.62
MOGO_SOCKET_VERSION=1.0.63
# 数据采集
MOGO_REALTIME_VERSION=1.0.62
MOGO_REALTIME_VERSION=1.0.63
# 探路,道路事件发布,获取
MOGO_TANLU_VERSION=1.0.62
MOGO_TANLU_VERSION=1.0.63
# 直播推流
MOGO_LIVE_VERSION=1.0.62
MOGO_LIVE_VERSION=1.0.63
# 直播拉流
MOGO_TRAFFICLIVE_VERSION=1.0.62
MOGO_TRAFFICLIVE_VERSION=1.0.63
######## Foundation MogoAiCloud Moduletruetr
# mogoAiCloud apk services

View File

@@ -1,7 +1,7 @@
package com.mogo.module.v2x.scenario.scene.livecar;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
import androidx.annotation.Nullable;
@@ -64,7 +64,11 @@ public class V2XVoiceCallLiveScenario extends AbsV2XScenario<V2XPushMessageEntit
R.dimen.module_v2x_event_window_width_vr : R.dimen.module_v2x_event_window_width);
int height = (int) V2XUtils.getApp().getResources().getDimension(V2XServiceManager.getMoGoStatusManager().isVrMode() ?
R.dimen.module_v2x_event_see_live_window_height_vr : R.dimen.module_v2x_event_see_live_window_height);
ViewGroup.LayoutParams layoutParams = new ViewGroup.LayoutParams(width, height);
RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(width, height);
layoutParams.topMargin = (int) V2XUtils.getApp().getResources().getDimension(V2XServiceManager.getMoGoStatusManager().isVrMode() ?
R.dimen.module_v2x_event_window_top_margin_vr : 0);
layoutParams.rightMargin = (int) V2XUtils.getApp().getResources().getDimension(V2XServiceManager.getMoGoStatusManager().isVrMode() ?
R.dimen.module_v2x_event_window_right_margin_vr : 0);
if (V2XServiceManager.getMoGoStatusManager().isVrMode()) {
V2XServiceManager
.getMogoTopViewManager()

View File

@@ -6,6 +6,8 @@
<dimen name="module_v2x_operation_panel_share_goneMarginRight">32px</dimen>
<dimen name="module_v2x_event_window_width">1060px</dimen>
<dimen name="module_v2x_event_window_width_vr">583px</dimen>
<dimen name="module_v2x_event_window_top_margin_vr">160px</dimen>
<dimen name="module_v2x_event_window_right_margin_vr">32px</dimen>
<dimen name="module_v2x_push_img_height">390px</dimen>
<dimen name="module_v2x_push_img_container_height">410px</dimen>