diff options
Diffstat (limited to 'dists/android/res')
-rw-r--r-- | dists/android/res/drawable/gradient.xml | 7 | ||||
-rw-r--r-- | dists/android/res/layout/main.xml | 10 | ||||
-rw-r--r-- | dists/android/res/layout/splash.xml | 19 | ||||
-rw-r--r-- | dists/android/res/values/strings.xml | 22 |
4 files changed, 58 insertions, 0 deletions
diff --git a/dists/android/res/drawable/gradient.xml b/dists/android/res/drawable/gradient.xml new file mode 100644 index 0000000000..dbfd9b5b34 --- /dev/null +++ b/dists/android/res/drawable/gradient.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<shape xmlns:android="http://schemas.android.com/apk/res/android"> + <gradient + android:startColor="#e9bb8b" + android:endColor="#d16e09" + android:angle="315" /> +</shape> diff --git a/dists/android/res/layout/main.xml b/dists/android/res/layout/main.xml new file mode 100644 index 0000000000..f5276ce41b --- /dev/null +++ b/dists/android/res/layout/main.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="utf-8"?> +<org.inodes.gus.scummvm.EditableSurfaceView + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" android:layout_height="fill_parent" + android:id="@+id/main_surface" + android:gravity="center" + android:keepScreenOn="true" + android:focusable="true" + android:focusableInTouchMode="true" +/> diff --git a/dists/android/res/layout/splash.xml b/dists/android/res/layout/splash.xml new file mode 100644 index 0000000000..e9fd5f70e7 --- /dev/null +++ b/dists/android/res/layout/splash.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:gravity="center" + android:background="@drawable/gradient" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + <ImageView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:adjustViewBounds="true" + android:scaleType="fitCenter" + android:src="@drawable/scummvm_big" /> + <ProgressBar android:id="@+id/progress" + style="?android:attr/progressBarStyleHorizontal" + android:layout_width="300dip" + android:layout_height="wrap_content" + android:padding="20dip"/> +</LinearLayout> diff --git a/dists/android/res/values/strings.xml b/dists/android/res/values/strings.xml new file mode 100644 index 0000000000..e06509d3ed --- /dev/null +++ b/dists/android/res/values/strings.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <string name="app_name">ScummVM</string> + <string name="app_desc">Graphic adventure game engine</string> + <string name="quit">Quit</string> + <string name="scummvm_perm_plugin_label">ScummVM plugin</string> + <string name="scummvm_perm_plugin_desc">Allows the application to + provide a ScummVM loadable plugin: code that will be executed in the + ScummVM application. Malicious plugins may do anything ScummVM + itself could do: write to your SD card, delete your savegames, + change the ScummVM background to puce, replace menu labels with rude + words, etc.</string> + <string name="no_sdcard_title">No SD card?</string> + <string name="no_sdcard">Unable to read your SD card. This usually + means you still have it mounted on your PC. Unmount, reinsert, + whatever and then try again.</string> + <string name="no_plugins_title">No plugins found</string> + <string name="no_plugins_found">ScummVM requires at least one <i>game + engine</i> to be useful. Engines are available as separate plugin + packages, from wherever you found ScummVM.</string> + <string name="to_market">To Market</string> +</resources> |