Version: 2022.3
LanguageEnglish
  • C#

AndroidJavaObject

class in UnityEngine

/

Implemented in:UnityEngine.AndroidJNIModule

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

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. Note: this API can be used from custom thread, but requires that thread to be attached to JVM first, see AndroidJNI.AttachCurrentThread.

Constructors

AndroidJavaObjectConstruct an AndroidJavaObject based on the name of the class.

Public Methods

CallCalls a Java method on an object (non-static).
CallStaticCall a static Java method on a class.
CloneReferenceCreates a clone of the C# object that references the same Java object.
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.