replace DayActivity with dayfragment at third party calendar intent too

This commit is contained in:
tibbi 2018-01-22 17:17:08 +01:00
parent 2fc5213391
commit d2a145faed
1 changed files with 3 additions and 8 deletions

View File

@ -677,14 +677,9 @@ class MainActivity : SimpleActivity(), RefreshRecyclerViewListener {
private fun openDayAt(timestamp: Long) {
val dayCode = Formatter.getDayCodeFromTS((timestamp / 1000).toInt())
openDayCode(dayCode)
}
private fun openDayCode(dayCode: String) {
Intent(this, DayActivity::class.java).apply {
putExtra(DAY_CODE, dayCode)
startActivity(this)
}
calendar_fab.beGone()
config.storedView = DAILY_VIEW
updateViewPager(dayCode)
}
private fun getHolidayRadioItems(): ArrayList<RadioItem> {