예제 #1
0
    //--------------------------------------
    //  PUBLIC METHODS
    //--------------------------------------

    public void Show()
    {
        StringBuilder        builder    = new StringBuilder();
        IEnumerator <string> enumerator = actions.GetEnumerator();

        if (enumerator.MoveNext())
        {
            builder.Append(enumerator.Current);
        }

        while (enumerator.MoveNext())
        {
            builder.Append("|");
            builder.Append(enumerator.Current);
        }

        MNAndroidNative.showMessage(title, message, builder.ToString(), MNP_PlatformSettings.Instance.AndroidDialogTheme);
    }
예제 #2
0
    //--------------------------------------
    //  PUBLIC METHODS
    //--------------------------------------

    public void init()
    {
        MNAndroidNative.showMessage(title, message, ok);
    }
예제 #3
0
    //--------------------------------------
    //  PUBLIC METHODS
    //--------------------------------------

    public void init()
    {
        MNAndroidNative.showMessage(title, message, ok, MNP_PlatformSettings.Instance.AndroidDialogTheme);
    }