summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorLikai Ding <likaid@codeaurora.org>2013-08-13 14:07:48 +0800
committerArne Coucheron <arco68@gmail.com>2017-12-16 06:52:36 +0100
commit02ee2b7c45bfc36c92fe636223c21895658a59d2 (patch)
treee5706bccd4ab2d35f77ba013a7151848c667cd9e /AndroidManifest.xml
parent19e28a2878d624afc44f700492d48c53b609590c (diff)
downloadandroid_packages_apps_Gallery2-02ee2b7c45bfc36c92fe636223c21895658a59d2.tar.gz
android_packages_apps_Gallery2-02ee2b7c45bfc36c92fe636223c21895658a59d2.tar.bz2
android_packages_apps_Gallery2-02ee2b7c45bfc36c92fe636223c21895658a59d2.zip
Gallery2: Support GIF animation
This change implements a Java GIF decoder. Change-Id: I227cef76cbacd66b7e87bc59b4f07d518b70a859 Signed-off-by: Xiaojing Zhang <zhangx@codeaurora.org>
Diffstat (limited to 'AndroidManifest.xml')
-rwxr-xr-xAndroidManifest.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 159798009..ad83d270a 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -307,6 +307,16 @@
android:theme="@style/Theme.Gallery"
android:configChanges="orientation|keyboardHidden|screenSize" />
+ <activity android:name="com.android.gallery3d.util.ViewGifImage"
+ android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
+ android:configChanges="orientation|keyboardHidden|screenSize|keyboard|navigation">
+ <intent-filter>
+ <action android:name="com.android.gallery3d.VIEW_GIF" />
+ <data android:mimeType="image/gif" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
<provider android:name="com.android.gallery3d.provider.GalleryProvider"
android:syncable="false"
android:grantUriPermissions="true"