AndroidJavaClass は Unity での java.lang.Class の総称的なインスタンスです。
Note: this API can be used from custom thread, but requires that thread to be attached to JVM first, see AndroidJNI.AttachCurrentThread.
AndroidJavaClass | クラス名から AndroidJavaClass を作成します。 |
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 のフィールドにオブジェクト型の値を設定する |