From 9a59270ac580b4dbac42aee8f7d3b868172bb5f5 Mon Sep 17 00:00:00 2001 From: liujing Date: Tue, 20 Oct 2020 10:37:05 +0800 Subject: [PATCH] path --- .../module/v2x/scenario/scene/road/V2XRoadVideoWindow.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/road/V2XRoadVideoWindow.java b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/road/V2XRoadVideoWindow.java index ff4a6ffa3a..da6d1b592b 100644 --- a/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/road/V2XRoadVideoWindow.java +++ b/modules/mogo-module-v2x/src/main/java/com/mogo/module/v2x/scenario/scene/road/V2XRoadVideoWindow.java @@ -78,7 +78,7 @@ public class V2XRoadVideoWindow extends RelativeLayout implements IV2XWindow, ID mVideoView.setOnCompletionListener(mediaPlayer -> { Logger.w(MODULE_NAME, "视频播放结束..."); - videoPlayEnd(); + videoPlayEnd(path); }); } @@ -103,7 +103,7 @@ public class V2XRoadVideoWindow extends RelativeLayout implements IV2XWindow, ID /* * 视频播放结束 * */ - private void videoPlayEnd(){ + private void videoPlayEnd(String path){ Bitmap bitmap = BitmapHelper.getVideoThumbnail(path); mThumbnailImageView.setVisibility(View.VISIBLE); mThumbnailImageView.setImageBitmap(bitmap);