android 设置视频比例缩放,Android VideoView比例缩放

虽然为时已晚,但可能会帮助别人寻找同样的问题.以下答案保持了纵横比(videoProportion).额外的部分

视频观看由电话的视图裁剪.

private void setDimension() {

// Adjust the size of the video

// so it fits on the screen

float videoProportion = getVideoProportion();

int screenWidth = getResources().getDisplayMetrics().widthPixels;

int screenHeight = getResources().getDisplayMetrics().heightPixels;

float screenProportion = (float) screenHeight / (float) screenWidth;

android.view.ViewGroup.LayoutParams lp = videoView.getLayoutParams();

if (videoProportion < screenProportion) {

lp.height= screenHeight;

lp.width = (int) ((float) screenHeight / videoProportion);

} else {

lp.width = screenWidth;

lp.height = (int) ((float) screenWidth * videoProportion);

}

videoView.setLayoutParams(lp);

}

// This method gets the proportion of the video that you want to display.

// I already know this ratio since my video is hardcoded, you can get the

// height and width of your video and appropriately generate the proportion

// as :height/width

private float getVideoProportion(){

return 1.5f;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值