diff options
author | Angus Lees | 2010-06-11 10:54:49 +0000 |
---|---|---|
committer | Angus Lees | 2010-06-11 10:54:49 +0000 |
commit | 580c9032f02123ba1f46a49c098dbf34f0b2f3c1 (patch) | |
tree | b7831f4c83c4f3d0b71fbd9f7eb379d0b0c44f5b /dists/android | |
parent | 3269e5cc4ca2ea04f862767595720ad2044cfd09 (diff) | |
download | scummvm-rg350-580c9032f02123ba1f46a49c098dbf34f0b2f3c1.tar.gz scummvm-rg350-580c9032f02123ba1f46a49c098dbf34f0b2f3c1.tar.bz2 scummvm-rg350-580c9032f02123ba1f46a49c098dbf34f0b2f3c1.zip |
Add support for setFocusRectangle - enabled on 'small' Android screens.
svn-id: r49594
Diffstat (limited to 'dists/android')
-rw-r--r-- | dists/android/AndroidManifest.xml | 15 | ||||
-rw-r--r-- | dists/android/AndroidManifest.xml.in | 4 |
2 files changed, 0 insertions, 19 deletions
diff --git a/dists/android/AndroidManifest.xml b/dists/android/AndroidManifest.xml index 9eb1d995f0..438703a3cc 100644 --- a/dists/android/AndroidManifest.xml +++ b/dists/android/AndroidManifest.xml @@ -38,17 +38,6 @@ <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> - <activity android:name=".TestActivity" - android:label="AAATestActivity" - android:theme="@android:style/Theme.NoTitleBar.Fullscreen" - android:screenOrientation="landscape" - android:configChanges="orientation|keyboardHidden" - android:windowSoftInputMode="adjustResize"> - <intent-filter> - <action android:name="android.intent.action.MAIN" /> - <category android:name="android.intent.category.LAUNCHER" /> - </intent-filter> - </activity> </application> <permission android:name="org.inodes.gus.scummvm.permission.SCUMMVM_PLUGIN" @@ -68,8 +57,4 @@ android:reqKeyboardType="qwerty"/> <uses-configuration android:reqTouchScreen="stylus" android:reqKeyboardType="qwerty"/> - - <!-- Can't really be used on a "small" screen, at least until we add - zooming support (and even then it won't be great) --> - <supports-screens android:smallScreens="false" /> </manifest> diff --git a/dists/android/AndroidManifest.xml.in b/dists/android/AndroidManifest.xml.in index a7fd283f01..ce0bef6f94 100644 --- a/dists/android/AndroidManifest.xml.in +++ b/dists/android/AndroidManifest.xml.in @@ -57,8 +57,4 @@ android:reqKeyboardType="qwerty"/> <uses-configuration android:reqTouchScreen="stylus" android:reqKeyboardType="qwerty"/> - - <!-- Can't really be used on a "small" screen, at least until we add - zooming support (and even then it won't be great) --> - <supports-screens android:smallScreens="false" /> </manifest> |