Play video in Android Surfaceview play at the original proportions of the video

Source: Internet
Author: User

Onpreparedlistener Mediaplayeronpreparedlistener =NewOnpreparedlistener () {@Override Public voidonprepared (MediaPlayer arg0) {//first get the width and height of video            intVwidth =mediaplayer.getvideowidth (); intVheight =mediaplayer.getvideoheight (); //The parent container of the LinearLayout android:orientation= "vertical" must beLinearLayout LinearLayout =(LinearLayout) Findviewbyid (R.id.layoutplay); intLW =linearlayout.getwidth (); intLH =linearlayout.getheight (); if(Vwidth > LW | | vheight >LH) {                //Zoom if the width or height of the video exceeds the size of the current screen                floatWratio = (float) Vwidth/(float) LW; floatHratio = (float) Vheight/(float) LH; //Select the big one to zoom in                floatRatio =Math.max (Wratio, hratio); Vwidth= (int) Math.ceil (float) Vwidth/ratio); Vheight= (int) Math.ceil (float) Vheight/ratio); //Set layout parameters for SurfaceviewLinearlayout.layoutparams lp=Newlinearlayout.layoutparams (Vwidth, vheight); Lp.gravity=Gravity.center;            SURFACEVIEW.SETLAYOUTPARAMS (LP); }            //and start playing the videoMediaplayer.start (); }    };

Play video in Android Surfaceview play at the original proportions of the video

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.