- Home /
Create UI Unity on UI Native Android has been render?
I had using native jar to create UI in Unity. So when that UI running, I want to create a new UI element of Unity on top of that UI, I had try:
AndroidJavaClass unityPlayer = new AndroidJavaClass("com.unity3d.player.UnityPlayer");
AndroidJavaObject activity = unityPlayer.GetStatic<AndroidJavaObject>("currentActivity");
activity.Call("runOnUiThread", new AndroidJavaRunnable(() =>
{
EnableButtonAndConfigStyle();
}));
But it's still on bottom native UI. In my case have some solution for handle it?
Comment
Your answer
Follow this Question
Related Questions
Results For: How to leave control with Native UI when using Render Above Native UI on Andoid 0 Answers
How to change Android navigation/status bar color? 0 Answers
Set android:hardwareAccelerated="true" for input field on Android 0 Answers
Application.OpenURL not working 1 Answer
how fix this problem of image ui disappearing when animated. 0 Answers