MVP패턴 (+BaseActivity, BasePresenter, BaseView)
MVP패턴 (+BaseActivity, BasePresenter, BaseView)NumPicker Sample App 만들 때 사용: https://github.com/lipnus/pickerGoogle Kotlin MVP todo Sample:https://github.com/googlesamples/android-architecture/tree/todo-mvp-kotlin/ BaseActivity.ktopen class BaseActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) } //프레퍼런스에서 불러오기 open fun getStri..