summaryrefslogtreecommitdiff
path: root/res/layout/activity_highscores.xml
diff options
context:
space:
mode:
authorpommicket <leonardomtenenbaum@gmail.com>2016-06-21 12:19:57 -0400
committerpommicket <leonardomtenenbaum@gmail.com>2016-06-21 12:20:21 -0400
commit7a28b12741c6215b393801c2cad049dd12cb35bd (patch)
treeeaf082c7aa6e05d109922a8b20a6964a1a09a547 /res/layout/activity_highscores.xml
parent45319ea149e7b41248ad8d5de89eda1bf4c92a40 (diff)
Added high scores and made gravity dependent on resolution
Diffstat (limited to 'res/layout/activity_highscores.xml')
-rw-r--r--res/layout/activity_highscores.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/res/layout/activity_highscores.xml b/res/layout/activity_highscores.xml
new file mode 100644
index 0000000..c626d11
--- /dev/null
+++ b/res/layout/activity_highscores.xml
@@ -0,0 +1,23 @@
+<?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:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:paddingBottom="@dimen/activity_vertical_margin"
+ android:paddingLeft="@dimen/activity_horizontal_margin"
+ android:paddingRight="@dimen/activity_horizontal_margin"
+ android:paddingTop="@dimen/activity_vertical_margin"
+ tools:context="org.neocities.autoart.ballbounce.Highscores"
+ android:id="@+id/highscores_layout">
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:id="@+id/highscores_title"
+ android:textColor="#000000"
+ android:text="Highscores"
+ android:layout_centerHorizontal="true"
+ android:textSize="20sp"
+ />
+
+</RelativeLayout>