-
💡[문제 상황 - 해결] This Activity already has an action bar supplied by the window decor.| 프로그래밍 분야/안드로이드 2021. 6. 4. 00:04
This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_SUPPORT_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead.
이미 액션바를 사용하고 있으므로 (그 하위 레이아웃인) 툴바를 중복하여 사용할 수 없다는 에러메세지.
AndroidManifest의 application 태그의 theme 부분을 NoActionBar로 변경해주면 해결.
<application <!---중략--> android:theme="@style/Theme.Design.NoActionBar"> <!---중략--> </application>