Created
May 26, 2020 19:25
-
-
Save baggednismo/63d3efe47d271301834460bb59bc3f6c to your computer and use it in GitHub Desktop.
This file contains 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 LauncherActivity : AppCompatActivity(){ | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
val handler = Handler() | |
setContentView(R.layout.activity_launcher) | |
val updates = listOf( | |
UpdatesSeriesModel( | |
... | |
), | |
UpdatesSeriesModel( | |
... | |
), | |
UpdatesSeriesModel( | |
... | |
) | |
) | |
pager.adapter = ViewPagerAdapter(updates) | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment