HW3 - Ghebrehiwet/AndroidAboutG GitHub Wiki

This week, you'll liven up your application UI with various layouts and interactivity.

Add a 2x2 grid of buttons to your main screen, where each button displays a 'toast' when tapped, except the top-left cell.

This Grid View reference example will be helpful - https://developer.android.com/guide/topics/ui/layout/gridview.html (Links to an external site.)

When the top-left cell is tapped, take the user to a new screen that displays a vertically scrolling list of text information. Each list row should have 2+ pieces of information (e.g. book title & author) in separate views. The list should use a RecyclerView to display more items than can fit on the screen at once.

This simplified RecyclerView tutorial should help clarify the necessary components:

http://www.android-examples.com/android-simple-recyclerview-example-tutorial/ (Links to an external site.)