Android: MainActivity now contains a tab switcher separating games by platform.

This commit is contained in:
sigmabeta
2015-06-21 19:22:12 -04:00
committed by Eder Bastos
parent 8b5b83c29a
commit 6b24b604e5
7 changed files with 326 additions and 43 deletions

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/grid_games"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_marginRight="@dimen/activity_horizontal_margin"
tools:listitem="@layout/grid_card_game"/>
</FrameLayout>