java.lang.Object |
↳ |
com.facebook.imagepipeline.nativecode.ImagePipelineNativeLoader |
Class Overview
Single place responsible for loading libimagepipeline.so and its dependencies.
If your class has a native method whose implementation lives in libimagepipeline.so then call
load()
in its static initializer:
public class ClassWithNativeMethod {
static {
ImagePipelineNativeLoader.load();
}
private static native void aNativeMethod();
}
Summary
Public Methods |
static
void
|
load()
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Constants
public
static
final
String
DSO_NAME
Constant Value:
"imagepipeline"
Fields
public
static
final
List<String>
DEPENDENCIES
Public Constructors
public
ImagePipelineNativeLoader
()
Public Methods
public
static
void
load
()