본문 바로가기

프로그래밍/Android 짜투리 지식

[android] Android studio xml rendering e

Android Studio xml preview에서 아래와 같은 오류 메시지와 함께 Layout이 안나올 때가 있다.


Rendering Problems The following classes could not be instantiated:

- android.support.v7.app.WindowDecorActionBar (Open Class, Show Exception, Clear Cache)

 Tip: Use View.isInEditMode() in your custom views to skip code or show sample data when shown in the IDE  Exception Details java.lang.NullPointerException   at android.support.v7.app.WindowDecorActionBar.getDecorToolbar(WindowDecorActionBar.java:241)   at android.support.v7.app.WindowDecorActionBar.init(WindowDecorActionBar.java:198)   at android.support.v7.app.WindowDecorAct



찾아보니 현재 테마를 맞추라는 내용이다.

나같은 경우에는 NoActionBar Theme여서 위의 오류가 발생해서, preview의 view theme를 NoActionBar로 해주니 해결되었다.


참고 : http://stackoverflow.com/questions/29887722/error-rendering-problems-the-following-classes-could-not-be-found-android-suppo

'프로그래밍 > Android 짜투리 지식' 카테고리의 다른 글

[android] SSO와 Service  (0) 2016.03.29
[android] onTouchEvent  (0) 2016.03.07
[android] Behavior  (3) 2016.01.21
[android] 인상적인 View  (0) 2015.06.23
[android] attr/actionbarSize  (0) 2015.03.24