Version: 5.6

AndroidJavaRunnable

매뉴얼로 전환
public delegatevoid AndroidJavaRunnable ();

설명

AndroidJavaRunnable is the Unity representation of a java.lang.Runnable object.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { // Pass execution context over to the Java UI thread. void Start() { AndroidJavaClass unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer"); AndroidJavaObject activity = unityPlayer.GetStatic<AndroidJavaObject>("currentActivity"); activity.Call("runOnUiThread", new AndroidJavaRunnable(runOnUiThread)); }

void runOnUiThread() { Debug.Log("I'm running on the Java UI thread!"); } }