android.graphics.Picture Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.graphics;
public class Picture
{
public Picture() { throw new RuntimeException("Stub!"); }
public Picture(android.graphics.Picture src) { throw new RuntimeException("Stub!"); }
public android.graphics.Canvas beginRecording(int width, int height) { throw new RuntimeException("Stub!"); }
public void endRecording() { throw new RuntimeException("Stub!"); }
public native int getWidth();
public native int getHeight();
public void draw(android.graphics.Canvas canvas) { throw new RuntimeException("Stub!"); }
public static android.graphics.Picture createFromStream(java.io.InputStream stream) { throw new RuntimeException("Stub!"); }
public void writeToStream(java.io.OutputStream stream) { throw new RuntimeException("Stub!"); }
protected void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
}