Functioning welcome activity
This commit is contained in:
parent
c5c5daef07
commit
0670be555f
6 changed files with 56 additions and 74 deletions
|
@ -7,12 +7,12 @@
|
|||
tools:context="com.kauron.dungeonmanager.Welcome"
|
||||
android:orientation="vertical">
|
||||
|
||||
<Button
|
||||
android:layout_width="match_parent"
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Load character"
|
||||
android:id="@+id/loadCharacter"
|
||||
android:onClick="onLoadClick" />
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:text="@string/new_character_warning"
|
||||
android:id="@+id/newText" />
|
||||
|
||||
<Button
|
||||
android:layout_width="fill_parent"
|
||||
|
@ -21,4 +21,12 @@
|
|||
android:id="@+id/newCharacter"
|
||||
android:onClick="onNewClick" />
|
||||
|
||||
<Button
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/load_character"
|
||||
android:id="@+id/loadCharacter"
|
||||
android:onClick="onLoadClick"
|
||||
android:layout_marginTop="10dp" />
|
||||
|
||||
</LinearLayout>
|
||||
|
|
Reference in a new issue