Wednesday, May 20, 2015

Android You need to use a Theme.AppCompat theme (or descendant) with this activity.

"You need to use a Theme.AppCompat theme (or descendant) with this activity."

이 에러메세지가 발생하는 것은 ActionBarActivity일때 테마를 Theme.AppCompat 테마를 사용하지 않아서이다.

1. 간단하게 해결하는 방법은 ActionBarActivity 대신에 Activity를 상속 받는 방법이다.
2. 또다른 방법은 styles.xml에서 다음과 같이 테마를 수정해 주는 방법이 있다.
    <style name="AppTheme" parent="android:Theme.Light">
        <!-- Customize your theme here. -->
    </style>

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
    </style>

커스텀 타이틀바를 만드는 과정에서 많은 착오가 있었는데 스타일을 반드시 정복해 봐야겠다.


No comments:

Post a Comment