Blame view

puzzlegame/src/main/res/layout/pause_menu.xml 1.62 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      android:id="@+id/pause_menu"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="top"
      android:paddingBottom="20dp"
      android:paddingLeft="20dp"
      android:paddingRight="20dp"
      android:paddingTop="20dp" >
  
      <TextView
          android:id="@+id/textView1"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerHorizontal="true"
          android:text="@string/pausemenu_title"
          android:textAppearance="?android:attr/textAppearanceLarge"
          android:textSize="30sp" />
  
      <LinearLayout
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignLeft="@+id/textView1"
          android:layout_alignParentTop="true"
          android:orientation="vertical"
          tools:ignore="RtlHardcoded">
  
          <Button
              android:id="@+id/pausemenu_resumeButton"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:layout_marginTop="66dp"
              android:text="@string/pausemenu_resume"
              android:textSize="20sp" />
  
          <Button
              android:id="@+id/pausemenu_quitButton"
              android:layout_width="fill_parent"
              android:layout_height="wrap_content"
              android:text="@string/pausemenu_quit_to_main"
              android:textSize="20sp" />
  
      </LinearLayout>
  
  </RelativeLayout>