package com.example.xiaotrip.ui.main.event
|
|
import com.example.xiaotrip.R
|
import com.example.xiaotrip.base.MyBaseActivity
|
|
class HistoryEventActivity : MyBaseActivity(){
|
|
|
override fun setContentView() {
|
setContentView(R.layout.base_list_activity)
|
}
|
|
override fun initView() {
|
setTitleText("历史活动")
|
addFragment(HistoryEventFragment(),R.id.rl_container)
|
}
|
|
override fun setOnclick() {
|
|
}
|
|
}
|