Skip to content

Instantly share code, notes, and snippets.

@flushpot1125
Last active November 27, 2016 07:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flushpot1125/f29682214864ad95cff9172847fe4268 to your computer and use it in GitHub Desktop.
Save flushpot1125/f29682214864ad95cff9172847fe4268 to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
public class Test1 : MonoBehaviour {
public Text text;
public void bindService_Start(){
Debug.Log("Unity test bindService Start");
AndroidJavaClass unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
AndroidJavaObject currentUnityActivity = unityPlayer.GetStatic<AndroidJavaObject>("currentActivity");
AndroidJavaClass plugin = new AndroidJavaClass("com.microsoft.CognitiveServicesExample.NativeBridge");
plugin.CallStatic("startBindService",currentUnityActivity);
}
public void bindService_Destroy(){
Debug.Log("Unity test bindService Stop");
AndroidJavaClass unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
AndroidJavaObject currentUnityActivity = unityPlayer.GetStatic<AndroidJavaObject>("currentActivity");
AndroidJavaClass plugin = new AndroidJavaClass("com.microsoft.CognitiveServicesExample.NativeBridge");
plugin.CallStatic("stopBindService",currentUnityActivity);
}
public void startRecognition(){
AndroidJavaObject plugin = new AndroidJavaObject("com.microsoft.CognitiveServicesExample.NativeBridge");
plugin.Call("startRecognition");
}
public void onCallBackShowResult(string resultText){
text.text = resultText;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment