Please conduct the following tasks alone. For implementation details you can refer to the lecture slides or the Android developer website. Please do not hesitate to ask me or the tutor if you have any questions. Under „Tip“ you can find some hints for the task. The „Checklist“ specifies what should happen when your implementation is correct.
Toast.makeText(this, item.content, Toast.LENGTH_SHORT).show();
Checklist | |
---|---|
When the app opens, it shows a list of items and give feedback when a item is clicked via Toast |
Check method signature of LinearLayoutManager and pass necessary parameters
Checklist | |
---|---|
When the app opens, it shows a horizontal list of items and give feedback when a item is clicked via Toast |
Change mColumnCount value to “2”
Checklist | |
---|---|
When the app opens, it shows a vertical grid of items with 2 columns and give feedback when a item is clicked via Toast |