Created
July 13, 2019 11:30
-
-
Save DVegasa/b19a41d4fd1a0c494f108fd585511c6e to your computer and use it in GitHub Desktop.
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 MainActivity : AppCompatActivity() { | |
| lateinit var adapter: RvAdapter | |
| override fun onCreate(savedInstanceState: Bundle?) { | |
| super.onCreate(savedInstanceState) | |
| setContentView(R.layout.activity_main) | |
| // I will tell about ItemStorage in a minute | |
| adapter = RvAdapter(this, ItemStorage.list) | |
| rv.adapter = adapter | |
| rv.layoutManager = LinearLayoutManager(this) | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment