Last active
March 22, 2018 11:57
-
-
Save tieorange/23bd2aebd8218c32dd3b8893ca2a808e to your computer and use it in GitHub Desktop.
MainActivityView.kt
This file contains hidden or 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 MainActivityView @Inject constructor() : PresentedActivityView<MainActivityPresenter>() { | |
@LayoutRes override val layoutResId = R.layout.activity_main | |
val slideShowImage: ImageView by bindView(R.id.slideShowImage) | |
override fun onViewsBound() { | |
TNImageView().makeRotatableScalable(slideShowImage) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment