분류 전체보기

안드로이드/이론

[ 안드로이드 ] BottomSheetDialog에서 Fragment로 값 전달

BottomSheetDialog에서 Fragment로 값 전달하기 안드로이드 앱 개발 중 Fragment에서 BottomSheetDialog를 띄우고, 해당 BottomSheetDialog에서 입력된 값을 가져와야하는 상황이 생겼다. 당연히 DataBinding으로는 해결이 안되므로, 인터페이스를 활용한다. 1. 데이터 전달을 위한 인터페이스 생성 AddClassFragment.kt (BottomSheetDialogFragment) class AddClassFragment : BottomSheetDialogFragment() { /** AddClassBottomSheet의 데이터를 전달하기위한 인터페이스 */ interface BottomSheedDataReciever{ fun setClassDatas(..

안드로이드/이론

[ 안드로이드 ] 외부 라이브러리 커스텀하기

https://github.com/tlaabs/TimetableView GitHub - tlaabs/TimetableView: Android Library that creates simple timetable. Android Library that creates simple timetable. Contribute to tlaabs/TimetableView development by creating an account on GitHub. github.com 시간표를 구현하기 위해 위의 라이브러리를 선택 했으나, 위의 라이브러리에는 몇 가지 지원 안되는 기능이 있었다. 테이블 헤더 높이 조절 불가 폰트 및 글자 크기 조절 불가 시간표 색상 선택 불가 (기본 컬러 조합으로 세팅 되어있음) 위의 기능들을 추가하..

dongx._.2
'분류 전체보기' 카테고리의 글 목록 (11 Page)