Legacy Documentation: Version 5.3
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

AndroidJavaObject

class in UnityEngine

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

Sumbission failed

For some reason your suggested change could not be submitted. Please try again 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.

Constructors

AndroidJavaObjectConstruct an AndroidJavaObject based on the name of the class.

Public Functions

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).
GetRawClassRetrieve the raw jclass pointer to the Java class.
GetRawObjectRetrieve the raw jobject pointer to the Java object.
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.