Nano Blog - 오병우

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에서 상속받으면 됨