mainmenu_main.xml
1.07 KB
<?xml version="1.0" encoding="utf-8"?>
<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_horizontal"
android:orientation="vertical"
android:weightSum="1">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="30dp"
android:text="@string/mainmenu_title"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="40sp" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:onClick="newGameButtonOnClick"
android:text="@string/mainmenu_newgame"
android:textSize="30dp"
tools:ignore="SpUsage"
android:layout_weight="0.04" />
</LinearLayout>