Version: 5.6

AndroidJavaObject

class in UnityEngine

매뉴얼로 전환

설명

AndroidJavaObject is the Unity representation of a generic instance of java.lang.Object.

It can be used as type-less interface to an instance of any Java class.

생성자

AndroidJavaObjectConstruct an AndroidJavaObject based on the name of the class.

Public 함수

CallCalls a Java method on an object (non-static).
CallStaticCall a static Java method on a class.
DisposeIDisposable callback.
GetGet the value of a field in an object (non-static).
GetRawClassRetrieves 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.
GetRawObjectRetrieves 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.
GetStaticGet the value of a static field in an object type.
SetSet the value of a field in an object (non-static).
SetStaticSet the value of a static field in an object type.