-
-
Save jjjlyn/05df4111bfcce4116d1a77ac3e95fd2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HistoryFragment : BaseFragment() { | |
private lateinit var mHistoryViewModel : HistoryViewModel | |
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { | |
super.onViewCreated(view, savedInstanceState) | |
mHistoryViewModel = ViewModelProvider(this).get(HistoryViewModel::class.java) | |
subscribeObservers() | |
} | |
fun subscribeObservers(){ | |
mHistoryViewModel.loadHistory().observe(viewLifecycleOwner, Observer { | |
// your code | |
}) | |
} | |
fun showDatePickerDialog(){ | |
// your code for selecting date | |
// val date : String = 선택한 date | |
mHistoryViewModel.setDate(date) | |
// 이 구간에서 mDate로 선언된 Livedata value가 변경되어 loadHistory()도 Callback으로 같이 호출된다. | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment