|
@@ -4,12 +4,14 @@ import android.content.Context;
|
|
|
import android.graphics.Bitmap;
|
|
|
import android.util.AttributeSet;
|
|
|
import android.util.Log;
|
|
|
+import android.view.Gravity;
|
|
|
import android.view.TextureView;
|
|
|
import android.widget.FrameLayout;
|
|
|
import android.widget.ImageView;
|
|
|
import android.widget.RelativeLayout;
|
|
|
|
|
|
import com.cooleshow.base.utils.LOG;
|
|
|
+import com.cooleshow.base.utils.ScreenUtils;
|
|
|
import com.cooleshow.base.utils.SizeUtils;
|
|
|
import com.cooleshow.musicmerge.R;
|
|
|
import com.cooleshow.musicmerge.bean.VideoInfo;
|
|
@@ -66,6 +68,7 @@ public class ShortVideoSelectCover extends RelativeLayout {
|
|
|
}
|
|
|
|
|
|
private void loadVideoInfo(VideoInfo videoInfo) {
|
|
|
+ resetVideoScale(videoInfo.getVideoWidth(), videoInfo.getVideoHeight());
|
|
|
mVideoCutLayout.setVideoInfo(videoInfo);
|
|
|
mVideoCutLayout.clearThumbnail();
|
|
|
mVideoCutLayout.setSliderMoveListener(new ICoverSelector.OnSliderMoveListener() {
|
|
@@ -101,6 +104,51 @@ public class ShortVideoSelectCover extends RelativeLayout {
|
|
|
mCoverSelectorManager.loadThumbnail2(videoInfo);
|
|
|
}
|
|
|
|
|
|
+ private void resetVideoScale(int videoWidth, int videoHeight) {
|
|
|
+ LOG.i("videoWidth:" + videoWidth);
|
|
|
+ LOG.i("videoHeight:" + videoHeight);
|
|
|
+ if (videoWidth == 0 || videoHeight == 0) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 计算视频的宽高比例
|
|
|
+ float videoProportion = (float) videoWidth / (float) videoHeight;
|
|
|
+ LOG.i("videoProportion:" + videoProportion);
|
|
|
+ // 获取TextureView的宽和高
|
|
|
+ int viewWidth = textureView.getWidth();
|
|
|
+ int viewHeight = textureView.getHeight();
|
|
|
+ if (viewWidth == 0 || viewHeight == 0) {
|
|
|
+ textureView.measure(0, 0);
|
|
|
+ viewWidth = textureView.getMeasuredWidth();
|
|
|
+ viewHeight = textureView.getMeasuredHeight();
|
|
|
+ LOG.i("触发0:viewWidth:" + viewWidth + "-viewHeight:" + viewHeight);
|
|
|
+ }
|
|
|
+ LOG.i("viewWidth:" + viewWidth);
|
|
|
+ LOG.i("viewHeight:" + viewHeight);
|
|
|
+ float viewProportion = (float) viewWidth / (float) viewHeight;
|
|
|
+ LOG.i("viewProportion:" + viewProportion);
|
|
|
+
|
|
|
+ if (viewHeight == 0) {
|
|
|
+ viewHeight = ScreenUtils.getScreenHeight();
|
|
|
+ }
|
|
|
+ int newWidth = (int) (viewHeight * videoProportion);
|
|
|
+ FrameLayout.LayoutParams layoutParams = (FrameLayout.LayoutParams) textureView.getLayoutParams();
|
|
|
+ layoutParams.width = newWidth;
|
|
|
+ layoutParams.gravity = Gravity.CENTER;
|
|
|
+ LOG.i("newWidth:" + newWidth);
|
|
|
+ textureView.requestLayout();
|
|
|
+
|
|
|
+// // 根据视频和View的宽高比例调整显示
|
|
|
+// if (videoProportion > viewProportion) {
|
|
|
+// // 视频宽高比例大于View的宽高比例,需要调整宽度
|
|
|
+//
|
|
|
+// } else {
|
|
|
+// // 视频宽高比例小于等于View的宽高比例,需要调整高度
|
|
|
+// int newHeight = (int) (viewWidth / videoProportion);
|
|
|
+// textureView.getLayoutParams().height = newHeight;
|
|
|
+// textureView.requestLayout();
|
|
|
+// }
|
|
|
+ }
|
|
|
+
|
|
|
public void getCover() {
|
|
|
if (onGetSampleImageListener != null) {
|
|
|
onGetSampleImageListener.start();
|
|
@@ -126,6 +174,8 @@ public class ShortVideoSelectCover extends RelativeLayout {
|
|
|
int duration = videoPlayer.getDuration();
|
|
|
LOG.i("duration :" + duration);
|
|
|
mVideoInfo.duration = duration;
|
|
|
+ mVideoInfo.setVideoWidth(videoPlayer.getVideoWidth());
|
|
|
+ mVideoInfo.setVideoHeight(videoPlayer.getVideoHeight());
|
|
|
loadVideoInfo(mVideoInfo);
|
|
|
}
|
|
|
|