davepamn Active Member Licensed User Longtime User Aug 31, 2015 #1 I want to display a message on an activity, but don't want to use the full screen. I want it to look like a popup dialogue.
I want to display a message on an activity, but don't want to use the full screen. I want it to look like a popup dialogue.
DonManfred Expert Licensed User Longtime User Aug 31, 2015 #2 have a look at the custom toast class... https://www.b4x.com/android/forum/threads/class-custom-toast-messages.18926/#content Upvote 0
have a look at the custom toast class... https://www.b4x.com/android/forum/threads/class-custom-toast-messages.18926/#content
davepamn Active Member Licensed User Longtime User Aug 31, 2015 #3 Toast 1 seems to be what I want B4X: Dim myT As CToast myT.Initialize(Activity, Me, Activity.Height, Activity.Width) myT.ToastMessageShow2("Please Take a Temperature", 5, 25, 50, "bdn.png", Colors.Red, Colors.Gray, 50, False) Last edited: Aug 31, 2015 Upvote 0
Toast 1 seems to be what I want B4X: Dim myT As CToast myT.Initialize(Activity, Me, Activity.Height, Activity.Width) myT.ToastMessageShow2("Please Take a Temperature", 5, 25, 50, "bdn.png", Colors.Red, Colors.Gray, 50, False)