크리에이터 채널 - 배너 광고 추가

This commit is contained in:
2023-09-15 02:06:27 +09:00
parent 0343c91f1c
commit 52e6965472
8 changed files with 117 additions and 2 deletions

View File

@@ -32,6 +32,21 @@ class FollowingCreatorActivity : BaseActivity<ActivityFollowingCreatorBinding>(
viewModel.getFollowedCreatorAllList()
}
override fun onResume() {
super.onResume()
binding.adView.resume()
}
override fun onPause() {
binding.adView.pause()
super.onPause()
}
override fun onDestroy() {
binding.adView.destroy()
super.onDestroy()
}
override fun setupView() {
loadingDialog = LoadingDialog(this, layoutInflater)
binding.toolbar.tvBack.text = "팔로잉 채널 리스트"