AndroidJavaObject は Unity での java.lang.Object のジェネリックインスタンスです。
It can be used as type-less interface to an instance of any Java class. Note: this API can be used from custom thread, but requires that thread to be attached to JVM first, see AndroidJNI.AttachCurrentThread.
AndroidJavaObject | クラスの名前をベースとした AndroidJavaObject を作成します |
Call | static でない Java メソッドを呼び出します |
CallStatic | static の Java メソッドを呼び出します |
CloneReference | Creates a clone of the C# object that references the same Java object. |
Dispose | IDisposable のコールバック |
Get | static でないフィールドの値を取得します |
GetRawClass | Retrieves the raw jclass pointer to the Java class.Note: Using raw JNI functions requires advanced knowledge of the Android Java Native Interface (JNI). Please take note. |
GetRawObject | Retrieves the raw jobject pointer to the Java object.Note: Using raw JNI functions requires advanced knowledge of the Android Java Native Interface (JNI). Please take note. |
GetStatic | static のフィールドの値を取得します |
Set | static でないフィールドに値を設定する |
SetStatic | static のフィールドにオブジェクト型の値を設定する |