diff options
Diffstat (limited to 'dists')
-rwxr-xr-x | dists/android/res/drawable-hdpi/ic_action_settings.png | bin | 0 -> 437 bytes | |||
-rwxr-xr-x | dists/android/res/drawable-mdpi/ic_action_settings.png | bin | 0 -> 310 bytes | |||
-rwxr-xr-x | dists/android/res/drawable-xhdpi/ic_action_settings.png | bin | 0 -> 471 bytes | |||
-rwxr-xr-x | dists/android/res/drawable-xxhdpi/ic_action_settings.png | bin | 0 -> 672 bytes | |||
-rw-r--r-- | dists/android/res/layout/main.xml | 21 |
5 files changed, 19 insertions, 2 deletions
diff --git a/dists/android/res/drawable-hdpi/ic_action_settings.png b/dists/android/res/drawable-hdpi/ic_action_settings.png Binary files differnew file mode 100755 index 0000000000..d9733250f5 --- /dev/null +++ b/dists/android/res/drawable-hdpi/ic_action_settings.png diff --git a/dists/android/res/drawable-mdpi/ic_action_settings.png b/dists/android/res/drawable-mdpi/ic_action_settings.png Binary files differnew file mode 100755 index 0000000000..8987358021 --- /dev/null +++ b/dists/android/res/drawable-mdpi/ic_action_settings.png diff --git a/dists/android/res/drawable-xhdpi/ic_action_settings.png b/dists/android/res/drawable-xhdpi/ic_action_settings.png Binary files differnew file mode 100755 index 0000000000..fb8f3343c8 --- /dev/null +++ b/dists/android/res/drawable-xhdpi/ic_action_settings.png diff --git a/dists/android/res/drawable-xxhdpi/ic_action_settings.png b/dists/android/res/drawable-xxhdpi/ic_action_settings.png Binary files differnew file mode 100755 index 0000000000..51f7527789 --- /dev/null +++ b/dists/android/res/drawable-xxhdpi/ic_action_settings.png diff --git a/dists/android/res/layout/main.xml b/dists/android/res/layout/main.xml index 8b0d515d62..fa4bb66af9 100644 --- a/dists/android/res/layout/main.xml +++ b/dists/android/res/layout/main.xml @@ -1,12 +1,29 @@ <?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"> + <org.scummvm.scummvm.EditableSurfaceView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/main_surface" - android:layout_width="fill_parent" - android:layout_height="fill_parent" + android:layout_width="match_parent" + android:layout_height="match_parent" android:gravity="center" android:keepScreenOn="true" android:focusable="true" android:focusableInTouchMode="true" /> + +<ImageView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:src="@drawable/ic_action_settings" + android:id="@+id/show_keyboard" + android:layout_alignParentTop="true" + android:layout_alignParentRight="true" + android:layout_marginRight="10dp" + android:layout_marginTop="10dp" /> + +</RelativeLayout> |