마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

CalendarView 질문

0 추천
캘린더뷰에서 클릭시에 분홍색으로 표시되는 날짜부분을 다른색으로 지정 가능한가요?

다른색으로 지정가능 하다면 어떻게 해야되는 건가요?
익명사용자 님이 2017년 12월 25일 질문

1개의 답변

0 추천

Material 버전은 CalendarView라면 focus background color는 app theme의 colorAccent 색상을 따르도록 되어 있습니다.

colorAccent 색상을 변경하거나, 새로운 theme를 정의하여 CalendarView에만 따로 별도의 colorAccent 색상을 반영 할 수 있습니다.

 

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <style name="CalendarViewTheme" parent="AppTheme">
        <item name="colorAccent">#FFFF00</item>
    </style>

 

    <CalendarView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/CalendarViewTheme"
        />

 

디자이너정 (42,810 포인트) 님이 2017년 12월 26일 답변
...