Last active
June 6, 2018 05:44
-
-
Save kantapp/a52f069b914b6c932bf0d46944ac1da0 to your computer and use it in GitHub Desktop.
Check Oriantation Andoird Kotlin
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
val view =inflater.inflate(R.layout.fragment_recent_anime, container, false) | |
dailyAnimeList=view.findViewById(R.id.dailyAnimeList) | |
dailyAnimeList!!.setHasFixedSize(true) | |
if(activity!!.resources.configuration.orientation==Configuration.ORIENTATION_PORTRAIT) | |
dailyAnimeList!!.layoutManager=GridLayoutManager(activity,2) | |
else | |
dailyAnimeList!!.layoutManager=GridLayoutManager(activity,4) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment