Android Question Overflow Menu

DT1111

Member
Licensed User
Longtime User
Hello

I have seen this done on several app where user have to press the "first" selection (the exit key?) in the overflow menu, twice, in order to exit. How is that done?

Also I have seen the overflow menu appear as faint Horizontal grey dots? Can that be controlled via codes?

Thanks.
 

Attachments

  • overflow menu.png
    overflow menu.png
    3 KB · Views: 278

NJDude

Expert
Licensed User
Longtime User
The exit is done by using a condition in the event:
B4X:
Activity_KeyPress(KeyCode As Int) As Boolean

There are several examples in the forums.

The grey dots appear at the bottom of the screen if you target SDK < 14 in your manifest.
 
Upvote 0
Top