videoview全屏
package com.parami.pkapp.view;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.VideoView;
/**
* videoview全屏
* @author lhy
*
*/
public class MyVideoView extends VideoView
{
public MyVideoView(Context context)
{
super(context);
// TODO Auto-generated constructor stub
}
public MyVideoView(Context context, AttributeSet attrs)
{
super(context, attrs);
// TODO Auto-generated constructor stub
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
int width = getDefaultSize(0, widthMeasureSpec);
int height = getDefaultSize(0, heightMeasureSpec);
setMeasuredDimension(width, height);
}
}
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。