返回介绍

AndroidJavaRunnable

发布于 2019-12-18 15:36:59 字数 1442 浏览 957 评论 0 收藏 0

Description 描述

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

AndroidJavaRunnable 是Unity表示java.lang.Runnable对象。

JavaScript:

// Pass execution context over to the Java UI thread.
function Start () {
	var unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
	var activity = unityPlayer.GetStatic.<AndroidJavaObject>("currentActivity");
	activity.Call("runOnUiThread", new AndroidJavaRunnable(runOnUiThread));
}
 
function runOnUiThread() { 
	Debug.Log("I'm running on the Java UI thread!"); 
} 

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Start() {
        AndroidJavaClass unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
        AndroidJavaObject activity = unityPlayer.GetStatic<AndroidJavaObject>("currentActivity");
        activity.Call("runOnUiThread", AndroidJavaRunnable(runOnUiThread));
    }
    void runOnUiThread() {
        Debug.Log("I'm running on the Java UI thread!");
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文