Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DatePickerDialog 스타일 적용 안됨 #36

Open
settle54 opened this issue Oct 11, 2024 · 1 comment
Open

DatePickerDialog 스타일 적용 안됨 #36

settle54 opened this issue Oct 11, 2024 · 1 comment

Comments

@settle54
Copy link
Contributor

settle54 commented Oct 11, 2024

어떤 버그인가요?

SearchFilterDialogFragmentshowCalendarDialog에서 style의 "CustomDatePicker"를 적용하려 하였으나 버튼이 보이지 않는 문제가 발생하였습니다.

DatePickerDialog(context, R.style.CustomDatePicker, { _, selectedYear, selectedMonth, selectedDay ->
                val formattedDate =
                    String.format("%04d.%02d.%02d", selectedYear, selectedMonth + 1, selectedDay)
                textView.text = formattedDate
                changeDateBackground(checkInput)
            }, year, month, day).show()

image

@LeeOhHyung
Copy link

@settle54 안녕하세요!

제 추측에는 R.style.CustomDatePicker 스타일을 뺐을때는 버튼이 보이지 않을까 싶은데 맞을까요. 왜냐면 cancel / ok 버튼 영역은 지금 잡혀져 있는것 같은데 텍스트 색상이 화이트이고, CustomDatePicker 스타일의 백그라운드 색상도 white여서 보이지 않는것 처럼 보이는게 아닐까 싶긴합니다.

그래서, 버튼색상을 별도로 잡아주거나 혹은 parent를 Light모드가 아닌 Theme.AppCompat.Dialog 을 사용하는 등도 시도해볼 수 있을것 같습니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants