- iOS
- Android
- Ok, Yes/No, Neutral popup (Single, two, three action)
- DatePicker, TimePicker
Welcome to Native Popups for iOS and Android! This plugin provides easy access from Unity to the native functionality of iOS and Android for displaying popups
public void OnDialogInfo()
{
NativeDialog.OpenDialog("Info popup", "Welcome To Native Popup", "Ok",
()=> {
Debug.Log("OK Button pressed");
});
}
public void OnDatePicker()
{
NativeDialog.OpenDatePicker(1992,5,10,
(DateTime _date) =>
{
Debug.Log(_date.ToString());
},
(DateTime _date) =>
{
Debug.Log(_date.ToString());
});
}
I have provide all java
and objective c
source. you can know how it work, optimization, or add any features
- Unity call to static function
AndroidJavaClass javaUnityClass = new AndroidJavaClass("com.pingak9.nativepopup.Bridge");
javaUnityClass.CallStatic("ShowDialogInfo", title, message, ok);
- Java show popup
void ShowDialogInfo(String title, String message, String ok) {
AlertDialog alertDialog = new AlertDialog.Builder(this).create(); //Read Update
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setButton(ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
UnityPlayer.UnitySendMessage("MobileDialogInfo", "OnOkCallBack", "0");
}
});
alertDialog.show();
}
- Build library jar and file jar to folder Plugins/Android
- Unity call to C
[DllImport("__Internal")]
private static extern void _TAG_ShowDialogInfo(string title, string message, string ok);
- Objective C show popup
+(void)ShowDialogInfo: (NSString *) title message: (NSString*) msg okTitle:(NSString*) b1 {
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:msg preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:b1 style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
[IOSNativePopUpsManager unregisterAllertView];
UnitySendMessage("MobileDialogInfo", "OnOkCallBack", [DataConvertor NSIntToChar:0]);
}];
[alertController addAction:okAction];
[[[[UIApplication sharedApplication] keyWindow] rootViewController] presentViewController:alertController animated:YES completion:nil];
_currentAllert = alertController;
}
- Copy file Objective C to folder Plugins/iOS
Happy coding!