반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Android Studio 3.6
- LayoutParmas
- 자격증
- Kotlin
- 온라인에디터
- 금속 탐지기 센서
- mysql 5.7
- Android
- 동영상 실행
- 온라인IDE
- lateinit
- BottomSheetDialog
- RecyclerView
- 회전 센서
- utf8mb4
- Exoplayer
- 웹코드빌드
- 코틀린
- setBackgroundResource
- phpstorm
- 광 센서
- powercfg
- 온라인무료코딩사이트
- 걸음수 감지 센서
- 자기장 센서
- 온라인코딩
- 걸음 감지 센서
- ARGB
- Aplha
Archives
- Today
- Total
Memory
[ANDROID] ExoPlayer 영상 꽉차게 표시하기 본문
반응형
<이전 글>
2021/01/12 - [IT/ANDROID] - [ANDROID/KOTLIN] ExoPlayer로 동영상 실행하기 (r2.12.2)
<com.google.android.exoplayer2.ui.PlayerView
android:id="@+id/exoPlayerV_video_detail"
android:layout_width="match_parent"
android:layout_height="210dp"
app:controller_layout_id="@layout/exo_playback_control_view"
app:fastforward_increment="10000"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:rewind_increment="10000"
app:show_timeout="10000" />
// 영상 높이 설정
app:resize_mode="zoom"
<com.google.android.exoplayer2.ui.PlayerView
android:id="@+id/exoPlayerV_video_detail"
android:layout_width="match_parent"
android:layout_height="210dp"
app:resize_mode="zoom"
app:controller_layout_id="@layout/exo_playback_control_view"
app:fastforward_increment="10000"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:rewind_increment="10000"
app:show_timeout="10000" />
※ resize_mode 종류
app:resize_mode="fixed_width"
app:resize_mode="fixed_height"
app:resize_mode="fill"
app:resize_mode="fit"
app:resize_mode="zoom"
반응형
'IT > ANDROID' 카테고리의 다른 글
[ANDROID/KOTLIN] 태블릿 기기인지 코드로 확인하는 방법 (0) | 2021.01.23 |
---|---|
[ANDROID] ExoPlayer Controller Layout Custom하기 (r2.12.2) (0) | 2021.01.23 |
[ANDROID/KOTLIN] ExoPlayer로 YouTube 영상 실행하기 (2) | 2021.01.18 |
[ANDROID/KOTLIN] ExoPlayer로 동영상 실행하기 (r2.12.2) (0) | 2021.01.12 |
[ANDROID] 샘플 무료 동영상 경로 공유 (1) | 2021.01.12 |