728x90
특정 동영상을 인터넷창에 링크를 거는 방법이다.
//유튜브
//val intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://youtu.be/0wezH4MAncY?autoplay=1&mute=1&controls=0&loop=1&modestbranding=1&playsinline=0"))
//비메오
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("https://player.vimeo.com/video/376759686?autoplay=1&muted=1&loop=1&title=0&byline=0&portrait=0"))
startActivity(intent)
자동 재생할려면 muted=1 설정해야 된다고 합니다.
추가로 플레이어 설정 자료 링크를 추가합니다.
유튜브
https://developers.google.com/youtube/player_parameters?hl=ko
비메오
728x90
'안드로이드' 카테고리의 다른 글
안드로이드 코틀린 / Firebase Google 인증 startactivityforresult deprecated (0) | 2023.10.20 |
---|---|
안드로이드 코틀린 / Application Installation Failed (0) | 2022.09.30 |
안드로이드 코틀린 / 문자열로 변수 호출하기, kotlin call variable from string (0) | 2022.07.15 |
안드로이드 코틀린 / java.lang.UnsatisfiedLinkError: dlopen failed: library "xxxx.so" not found (0) | 2022.03.29 |
안드로이드 코틀린 / kotlin gradle and ide plugin versions are different (0) | 2022.03.29 |