示例#1
0
 public void Show(string title, string message, PlatformDialog.Type buttonType)
 {
     DialogShowWithTitle(title, message, buttonType.ToInt());
 }
示例#2
0
 public void Show(string message, PlatformDialog.Type buttonType)
 {
     using (AndroidJavaClass javaClass = new AndroidJavaClass("unity.plugins.dialog.NativeDialog")) {
         javaClass.CallStatic("ShowDialog", message, buttonType.ToInt());
     }
 }
示例#3
0
 public void Show(string message, PlatformDialog.Type buttonType)
 {
     DialogShowWithMessage(message, buttonType.ToInt());
 }