O ozgureffe Member Licensed User Longtime User Feb 26, 2012 #1 Question is very simple and clear I think... Is it possible to create that sceen with the help of b4a? I just want to use it as a part of service module for my reminders...
Question is very simple and clear I think... Is it possible to create that sceen with the help of b4a? I just want to use it as a part of service module for my reminders...
moster67 Expert Licensed User Longtime User Feb 26, 2012 #2 No, I don't think you can create a modal dialog such as a msgbox in a service-module (only toast-messages). However, if you use an activity-module, you can create a similar dialog using the dialogs-library. Here is an example: http://www.b4x.com/forum/basic4android-updates-questions/13907-custom-font-msgbox.html#post78690 Upvote 0
No, I don't think you can create a modal dialog such as a msgbox in a service-module (only toast-messages). However, if you use an activity-module, you can create a similar dialog using the dialogs-library. Here is an example: http://www.b4x.com/forum/basic4android-updates-questions/13907-custom-font-msgbox.html#post78690
moster67 Expert Licensed User Longtime User Feb 26, 2012 #3 BTW: you can make very nice looking toast-messages using the the CustomToast-library. See here: http://www.b4x.com/forum/additional...ates/11220-customtoast-library.html#post62694 Upvote 0
BTW: you can make very nice looking toast-messages using the the CustomToast-library. See here: http://www.b4x.com/forum/additional...ates/11220-customtoast-library.html#post62694
NJDude Expert Licensed User Longtime User Feb 26, 2012 #4 Or you could do something like THIS Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 26, 2012 #5 Yes. Create a transparent activity with a non-transparent panel. The panel should hold the dialog views. Upvote 0
Yes. Create a transparent activity with a non-transparent panel. The panel should hold the dialog views.