Android SurfaceView內容置中顯示

來源:互聯網
上載者:User

標籤:cbe   圖片   注意   call   def   尺寸   main   art   lin   

問題緣由:

最近準備封裝一個視頻播放器,我採用了SurfaceView + MediaPlayer的方式。

視頻載入顯示畫面後遇到問題:“視頻畫面扭曲,比例變形。” 

問題:

解決思路:

視頻尺寸會自動填滿surfaceView,所以想要調整視頻尺寸 修改surfaceView就好了。

通過監聽mediaplayer的回呼函數“onVideoSizeChanged” 在裡面修改surfaceView的寬高。

changeVideoSize
public void changeVideoSize() {        int videoWidth = mediaPlayer.getVideoWidth();        int videoHeight = mediaPlayer.getVideoHeight();        //根據視頻尺寸去計算->視頻可以在sufaceView中放大的最大倍數。        float max;        if (getResources().getConfiguration().orientation==ActivityInfo.SCREEN_ORIENTATION_PORTRAIT) {            //豎屏模式下按視頻寬度計算放大倍數值            max = Math.max((float) videoWidth / (float) surfaceWidth,(float) videoHeight / (float) surfaceHeight);        } else{            //橫屏模式下按視頻高度計算放大倍數值            max = Math.max(((float) videoWidth/(float) surfaceHeight),(float) videoHeight/(float) surfaceWidth);        }                //視頻寬高分別/最大倍數值 計算出放大後的視頻尺寸        videoWidth = (int) Math.ceil((float) videoWidth / max);        videoHeight = (int) Math.ceil((float) videoHeight / max);        //無法直接設定視頻尺寸,將計算出的視頻尺寸設定到surfaceView 讓視頻自動填滿。        surfaceView.setLayoutParams(new RelativeLayout.LayoutParams(videoWidth, videoHeight));    }

注意:surfaceView的尺寸需要記錄儲存為固定值,否則在旋轉螢幕後尺寸會變動。

 

效果:

完整代碼:

 

public class MainActivity extends AppCompatActivity implements SurfaceHolder.Callback, MediaPlayer.OnVideoSizeChangedListener {    private SurfaceView surfaceView;    private MediaPlayer mediaPlayer;    private int surfaceWidth;    private int surfaceHeight;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        //初始化頁面/對象/變數/監聽事件        setContentView(R.layout.activity_main);        surfaceView = (SurfaceView) findViewById(R.id.surfaceView);        surfaceView.getHolder().addCallback(this);    }    private void playVideo(String url) {        try {            mediaPlayer.setDataSource(this, Uri.parse(url));            mediaPlayer.prepare();            mediaPlayer.start();} catch (IOException e) {e.printStackTrace();}    }    @Override    public void surfaceCreated(SurfaceHolder surfaceHolder) {        mediaPlayer = new MediaPlayer();        mediaPlayer.setOnVideoSizeChangedListener(this);        mediaPlayer.setDisplay(surfaceHolder);      
if(getResources().getConfiguration().orientation==ActivityInfo.SCREEN_ORIENTATION_PORTRAIT){            surfaceWidth=surfaceView.getWidth();            surfaceHeight=surfaceView.getHeight();        }else {            surfaceWidth=surfaceView.getHeight();            surfaceHeight=surfaceView.getWidth();        }        playVideo("http://pgccdn.v.baidu.com/258500786_2854944371_20171201122626.mp4?authorization=bce-auth-v1%2Fc308a72e7b874edd9115e4614e1d62f6%2F2017-12-01T04%3A26%3A31Z%2F-1%2F%2Fcbe73c8f603a65a23a019236ad32c090ba08f587acae4011d388f153d912724f&responseCacheControl=max-age%3D8640000&responseExpires=Sun%2C+11+Mar+2018+12%3A26%3A31+GMT&xcode=0d70b526aeacd2423ca650defc16c18d96d564747874148f&time=1512191597&_=1512108201312");    }    @Override    public void surfaceChanged(SurfaceHolder surfaceHolder, int i, int i1, int i2) {    }    @Override    public void surfaceDestroyed(SurfaceHolder surfaceHolder) {        mediaPlayer.release();        mediaPlayer=null;    }    public void changeVideoSize() {        int videoWidth = mediaPlayer.getVideoWidth();        int videoHeight = mediaPlayer.getVideoHeight();        //根據視頻尺寸去計算->視頻可以在sufaceView中放大的最大倍數。        float max;        if (getResources().getConfiguration().orientation==ActivityInfo.SCREEN_ORIENTATION_PORTRAIT) {            //豎屏模式下按視頻寬度計算放大倍數值            max = Math.max((float) videoWidth / (float) surfaceWidth,(float) videoHeight / (float) surfaceHeight);        } else{            //橫屏模式下按視頻高度計算放大倍數值            max = Math.max(((float) videoWidth/(float) surfaceHeight),(float) videoHeight/(float) surfaceWidth);        }        //視頻寬高分別/最大倍數值 計算出放大後的視頻尺寸        videoWidth = (int) Math.ceil((float) videoWidth / max);        videoHeight = (int) Math.ceil((float) videoHeight / max);        //無法直接設定視頻尺寸,將計算出的視頻尺寸設定到surfaceView 讓視頻自動填滿。        surfaceView.setLayoutParams(new RelativeLayout.LayoutParams(videoWidth, videoHeight));    }    @Override    public void onVideoSizeChanged(MediaPlayer mp, int width, int height) {        changeVideoSize();    }    @Override    public void onConfigurationChanged(Configuration newConfig) {        super.onConfigurationChanged(newConfig);        changeVideoSize();    }}

 

最後,在此希望大家能夠提供其它演算法,應該會有更好的。

Android SurfaceView內容置中顯示

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.