Categories: Android

[안드로이드] VideoView 에 동영상을 풀스크린으로 나오게 하기

 안드로이드에서 그냥 VideoView를 사용하여 동영상을 재생해보면 동영상 비율에 따라서 자동으로 View의 사이즈가 정해지는 것을 볼 수 있습니다. 이러한 경우 VideoView를 상속받는 Class를 하나 만든 뒤에 onMeasure() 함수를 Override하여 직접 구현하면 됩니다.

 

[code]
@Override
protected void onMeasure(int widthMeasureSpec, int heigthMeasureSpec) {
DisplayMetrics displayMetrics = this.getResources().getDisplayMetrics();
if (displayMetrics != null) {
setMeasuredDimension(displayMetrics.widthPixels, displayMetrics.heightPixels);
}
}

[/code]

 

 화면 사이즈에 꽉 차도록 조절할 수 있는 코드입니다.

 

dingpong

Share
Published by
dingpong

Recent Posts

IHG Points Purchase Promotion: 100% Bonus Points

IHG Points Purchase Promotion: 100% Bonus Points (Until June 29, 2024) 👍 Hello everyone 🖐️🖐️,…

5개월 ago

IHG Summer Stay Bonus Points Promotion (2N2K, 2N3K, 4N8K)

Introduction to IHG Bonus Points Promotion Hello everyone! Today, I'd like to introduce you to…

5개월 ago

LFS error at git checkout in Jenkins

Problem stdout: stderr: Downloading xxxx.a (83 MB) error: git-lfs smudge -- 'xxxx.a' died of signal…

3년 ago

플레이모빌 크리스마스 XXL 6629 산타 해외직구 구매가 배송비

https://www.playmobil.de/playmobil-xxl-weihnachtsmann/6629.html 구매가 : 48.49 유로 (플레이모빌 독일 홈페이지) 결제하는데 안되서 PayPal 로 결제하니 잘 잔행…

4년 ago

코카콜라 제로 355ml 72캔 구매가 (캔당 453원)

롯데온에서 355ml 24캔 롯데카드로 구매시 13,210원 https://www.lotteon.com/p/product/PD36294 APP으로 35,000원 이상 구매시 7,000 포인트 적립 행사…

4년 ago

경동나비엔 온수매트 EQM541-QS (퀸사이즈) 구입가

구입 매장 : 현대 홈쇼핑 (홈쇼핑 방송 중) 모바일 앱 http://www.hyundaihmall.com/front/pda/itemPtc.do?slitmCd=2114353981 최종 결제 가격 :…

4년 ago