您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
634 B
20 行
634 B
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace HuaweiService
|
|
{
|
|
public class Common
|
|
{
|
|
public const string UNITY_PLAYER = "com.unity3d.player.UnityPlayer";
|
|
public static AndroidJavaObject GetActivity()
|
|
{
|
|
AndroidJavaClass player = new AndroidJavaClass(UNITY_PLAYER);
|
|
AndroidJavaObject activity = player.GetStatic<AndroidJavaObject>("currentActivity");
|
|
return activity;
|
|
}
|
|
public static void RunOnUiThread(AndroidJavaRunnable a){
|
|
GetActivity().Call("runOnUiThread", new AndroidJavaRunnable(a));
|
|
}
|
|
}
|
|
}
|