일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- binding adapter
- Fragment에서 Activity의 함수 사용하기
- Error:Execution failed for task ':app:mergeDebugResources'
- ActivityTestRule
- 안드로이드개발레벨업교과서
- fragment
- 코딜리티
- high order function
- 안드로이드
- Fragment 수동 추가
- searchview
- recyclerview
- 안드로이드스튜디오
- espresso
- IntentTestRule
- ui test
- 뷰변경 감지
- 재사용
- 구분선
- 리사이클러뷰
- 테마 아이콘
- Android
- 고차함수
- 스와이프
- 코틀린
- 안드로이드13
- 생명주기
- adapter
- LayoutManger
- viewholder
Archives
- Today
- Total
룬아님의 취중코딩
java.lang.IllegalArgumentException: This component requires that you specify a valid android 본문
개발/안드로이드 개발
java.lang.IllegalArgumentException: This component requires that you specify a valid android
룬아님 2020. 3. 12. 13:20BadgeDrawable과 같은 Material에 포함되어 있는 뷰를 사용할때에
App theme를 Theme.AppCompat로 사용하고 있을 때 생기는 크래시이다.
Material view들을 사용하기 위해서는
<style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
위와 같이 MaterialComponents theme를 상속받아야 한다.
하지만 MaterialComponents에 의해 작동방식이나 뷰의 모양이 변할 수 있고 이를 원치 않을 때에는
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar.Bridge">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorAccent</item>
<item name="colorAccent">@color/colorPrimaryDark</item>
</style>
Bridge를 사용하면 된다.
https://material.io/develop/android/docs/getting-started/
이곳의 4번째 항목
Change your app theme to inherit from a Material Components theme
을 읽어보면 된다.
반응형
'개발 > 안드로이드 개발' 카테고리의 다른 글
material 1.0.0 에서 1.1.0 올릴 때 SnackBar의 변경점 (0) | 2020.03.17 |
---|---|
material 1.0.0 에서 1.1.0 올릴 때 Chip의 변경점 (0) | 2020.03.13 |
androidx.appcompat:appcompat:1.1.0을 사용할 때 롤리팝 버전 WebView에서 crash가 발생하는 증상 (0) | 2020.02.24 |
생명주기 메서드 사용 시 주의사항, super.onXxx 호출 순서 (0) | 2020.02.17 |
Activity 생명주기 메서드 호출 시점 (0) | 2020.02.17 |
Comments