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);