FileDocCategorySizeDatePackage
ImageReader.javaAPI DocAndroid 5.1 API1271Sat Mar 14 14:09:36 GMT 2015android.media

ImageReader.java

package android.media;
public class ImageReader
  implements java.lang.AutoCloseable
{
public static interface OnImageAvailableListener
{
public abstract  void onImageAvailable(android.media.ImageReader reader);
}
ImageReader() { throw new RuntimeException("Stub!"); }
public static  android.media.ImageReader newInstance(int width, int height, int format, int maxImages) { throw new RuntimeException("Stub!"); }
public  int getWidth() { throw new RuntimeException("Stub!"); }
public  int getHeight() { throw new RuntimeException("Stub!"); }
public  int getImageFormat() { throw new RuntimeException("Stub!"); }
public  int getMaxImages() { throw new RuntimeException("Stub!"); }
public  android.view.Surface getSurface() { throw new RuntimeException("Stub!"); }
public  android.media.Image acquireLatestImage() { throw new RuntimeException("Stub!"); }
public  android.media.Image acquireNextImage() { throw new RuntimeException("Stub!"); }
public  void setOnImageAvailableListener(android.media.ImageReader.OnImageAvailableListener listener, android.os.Handler handler) { throw new RuntimeException("Stub!"); }
public  void close() { throw new RuntimeException("Stub!"); }
protected  void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
}