Android Question Buttons on Activity Panel?

JonRubin

Member
Licensed User
Longtime User
Hi All... Maybe I overlooked something but I am at a lose as to how to place what appear to be buttons on the Activity Panel.... Thanks... Jon
upload_2016-12-19_20-26-46.png
 

JonRubin

Member
Licensed User
Longtime User
Love being able to load the FontAwsome graphics....

However, based on: Activity.AddMenuItem3("LogOut", "LogOutBtn_Click", TextToBitmap(Chr(0xF053), 28), True)
I can't figure this out when the Sub LogOutBtn_Click is not called when clicked? Yes, it is defined in the same Module and yes the correct Icon/character is being shown.

Thanks Jon
 
Upvote 0

Jeffrey Cameron

Well-Known Member
Licensed User
Longtime User
It does refer to the sub event name. With your line:
Activity.AddMenuItem3("LogOut", "LogOutBtn_Click", TextToBitmap(Chr(0xF053), 28), True)
It was looking for a sub called "LogOutBtn_Click_Click". The event names are appended to the event prefix you supply.
 
Upvote 0
Top