activity_main_menu.xml
920 Bytes
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center|center_horizontal|top"
android:orientation="vertical" >
<ViewSwitcher
android:id="@+id/mainMenuViewSwitcher"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="46dp"
tools:ignore="UselessParent">
<include
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/mainmenu_main" />
<include
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/mainmenu_newgame" />
</ViewSwitcher>
</LinearLayout>