Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe2ab678 authored by Leon Scroggins III's avatar Leon Scroggins III
Browse files

Deprecate Movie.java

Bug: 27847286
Test: none

Now that we have a framework replacement, deprecate this little-used
class.

Change-Id: Iedec214c7eb729ccb77d2b4818971393938b2295
parent 04fe7e60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13777,7 +13777,7 @@ package android.graphics {
    enum_constant public static final android.graphics.Matrix.ScaleToFit START;
  }
  public class Movie {
  public deprecated class Movie {
    method public static android.graphics.Movie decodeByteArray(byte[], int, int);
    method public static android.graphics.Movie decodeFile(java.lang.String);
    method public static android.graphics.Movie decodeStream(java.io.InputStream);
+5 −1
Original line number Diff line number Diff line
@@ -17,9 +17,13 @@
package android.graphics;

import android.content.res.AssetManager;
import java.io.InputStream;

import java.io.FileInputStream;
import java.io.InputStream;

/**
 * @deprecated Prefer {@link android.graphics.drawable.AnimatedImageDrawable}.
 */
public class Movie {
    private long mNativeMovie;