fiore@0
|
1 <?xml version="1.0" encoding="utf-8"?>
|
fiore@0
|
2
|
fiore@0
|
3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
fiore@0
|
4 android:layout_width="match_parent"
|
fiore@0
|
5 android:layout_height="wrap_content" android:orientation="vertical">
|
fiore@0
|
6
|
fiore@0
|
7 <Button
|
fiore@0
|
8 android:id="@+id/exitBtn"
|
fiore@0
|
9 android:layout_width="match_parent"
|
fiore@0
|
10 android:layout_height="wrap_content"
|
fiore@0
|
11 android:soundEffectsEnabled="true"
|
fiore@0
|
12 android:text="@string/exitBtn"
|
fiore@0
|
13 android:tag="EXIT"
|
fiore@0
|
14 android:textSize="40dp"
|
fiore@0
|
15 android:textStyle="bold" />
|
fiore@0
|
16
|
fiore@0
|
17 <Button
|
fiore@0
|
18 android:id="@+id/saveBtn"
|
fiore@0
|
19 android:layout_width="match_parent"
|
fiore@0
|
20 android:layout_height="wrap_content"
|
fiore@0
|
21 android:soundEffectsEnabled="true"
|
fiore@0
|
22 android:text="@string/saveBtn"
|
fiore@0
|
23 android:tag="SAVE"
|
fiore@0
|
24 android:textSize="40dp"
|
fiore@0
|
25 android:textStyle="bold" />
|
fiore@0
|
26
|
fiore@0
|
27 <Button
|
fiore@0
|
28 android:id="@+id/openBtn"
|
fiore@0
|
29 android:layout_width="match_parent"
|
fiore@0
|
30 android:layout_height="wrap_content"
|
fiore@0
|
31 android:soundEffectsEnabled="true"
|
fiore@0
|
32 android:text="@string/openBtn"
|
fiore@0
|
33 android:tag="OPEN"
|
fiore@0
|
34 android:textSize="40dp"
|
fiore@0
|
35 android:textStyle="bold" />
|
fiore@0
|
36
|
fiore@0
|
37 <Button
|
fiore@0
|
38 android:id="@+id/noBtn"
|
fiore@0
|
39 android:layout_width="match_parent"
|
fiore@0
|
40 android:layout_height="wrap_content"
|
fiore@0
|
41 android:soundEffectsEnabled="true"
|
fiore@0
|
42 android:text="@android:string/cancel"
|
fiore@0
|
43 android:tag="CANCEL"
|
fiore@0
|
44 android:textSize="40dp"
|
fiore@0
|
45 android:textStyle="bold" />
|
fiore@0
|
46
|
fiore@0
|
47 </LinearLayout>
|
fiore@0
|
48
|
fiore@0
|
49
|