[Android] VideoView landscape 전체화면
전공 관련 자료2017. 11. 6. 00:50
AndroidManifest.xml에서 activity 추가
<activity
android:name=".VideoActivity"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
에러: You need to use a Theme.AppCompat theme (or descendant) with this activity
해결 방법: VideoActivity를 AppCompatActivity에서 상속받지 말고 Activity에서 상속받으면 됨
'전공 관련 자료' 카테고리의 다른 글
[CUDA] nvcc fatal : 32 bit compilation is only supported for Microsoft Visual Studio 2013 and earlier (0) | 2019.01.02 |
---|---|
[CUDA] cudart64_100.dll 에러 (0) | 2019.01.02 |
프로그래밍 능력 자가 점검 (0) | 2017.07.05 |
카드 덱 이미지 (트럼프 카드) (0) | 2017.04.22 |
프로그래밍 시의 코딩 및 네이밍 컨벤션 (0) | 2015.07.24 |