aboutsummaryrefslogtreecommitdiff
path: root/engine/src/android/res/layout/about.xml
diff options
context:
space:
mode:
authorScott Barta <sbarta@google.com>2012-03-01 12:35:35 -0800
committerScott Barta <sbarta@google.com>2012-03-01 12:40:08 -0800
commit59b2e6871c65f58fdad78cd7229c292f6a177578 (patch)
tree2d4e7bfc05b93f40b34675d77e403dd1c25efafd /engine/src/android/res/layout/about.xml
parentf9b30489e75ac1eabc365064959804e99534f7ab (diff)
downloadjmonkeyengine-59b2e6871c65f58fdad78cd7229c292f6a177578.tar.gz
Adds the jMonkeyEngine library to the build.
Adds the jMonkeyEngine open source 3D game engine to the build. This is built as a static library and is only used by the Finsky client. Change-Id: I06a3f054df7b8a67757267d884854f70c5a16ca0
Diffstat (limited to 'engine/src/android/res/layout/about.xml')
-rw-r--r--engine/src/android/res/layout/about.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/engine/src/android/res/layout/about.xml b/engine/src/android/res/layout/about.xml
new file mode 100644
index 0000000..1d8c2b0
--- /dev/null
+++ b/engine/src/android/res/layout/about.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+>
+
+ <LinearLayout
+ android:id="@+id/buttonsContainer"
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ >
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="copyright (c) 2009-2010 JMonkeyEngine"
+ />
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="http://www.jmonkeyengine.org"
+ />
+
+ </LinearLayout>
+
+</LinearLayout>