af6964e6
Edmur LOPES
create new git
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<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>
|