안드로이드 마테리얼 데이트 픽커 오류.
앱에서 달력으로 기간을 선택해오는 머티리얼.. 마테리얼... 머테리얼... 그 라이브러리를 적용했을때 볼 수 있는 오류다.
java.lang.IllegalArgumentException: com.google.android.material.datepicker.MaterialDatePicker requires a value for the com.cyd.selllaundryadmin:attr/colorSurface attribute to be set in your app theme. You can either set the attribute in your theme or update your theme to inherit from Theme.MaterialComponents (or a descendant).
적혀있듯이 테마를 넣어달라고 한다. 테마는 필수 ~!
다른 액티비티에는 적용을 시켜뒀는데 새로운 액티비티 생성 후, 적용을 시켜주지 않아서 오류가났다.
해결책은 간단하다.
maifest - 해당 액티비티에 적용시킬 테마를 명시해주면 끝.
자세히 설명해보자면
1. 달력에 적용시켜줄 테마 생성
res < values < themes < themes.xml
xml 파일에서 달력에 적용시킬 커스텀 테마를 작성해준다.
<style name="MaterialCustomRoot" parent="Theme.MaterialComponents.Light">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="android:statusBarColor">@color/white</item>
<item name="android:windowLightStatusBar">true</item>
<item name="colorPrimary">@color/main_red</item>
<item name="materialCalendarStyle">@style/Widget.MaterialComponents.MaterialCalendar</item>
<item name="materialCalendarFullscreenTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen</item>
<item name="materialCalendarTheme">@style/ThemeOverlay.MaterialComponents.MaterialCalendar</item>
</style>
2. manifest에 명시
데이트픽커를 적용한 액티비티에 위에서 작성한 테마를 적어준다.
<activity android:name=".Main.MyActivity"
android:theme="@style/MaterialCustomRoot"
/>
'에러' 카테고리의 다른 글
[Flutter] CFBundleIconFiles is not of the required type for that key (1) | 2024.08.21 |
---|---|
[Flutter] local notification plugin FCM 알림 에러 (0) | 2024.08.06 |
[iOS] Core data NSCocoaErrorDomain (0) | 2024.02.20 |
[mac] zsh: command not found: pod 에러 해결 (1) | 2024.02.13 |
Gson JsonSyntaxException error (0) | 2022.01.05 |