Bug? Issue with menu Items in Android 5.0

RVP

Active Member
Licensed User
Longtime User
On a Samsung Galaxy tab 3

In my app I add 4 menu Items to the Activity using AddmenuItem3, the first 3 show on the top, the last is accessible thru the menu button.

B4X:
    Activity.AddMenuItem3("","mnuTime", LoadBitmap(File.DirAssets, "Clock-icon.png"), True)
    Activity.AddMenuItem3("","mnuGet", LoadBitmap(File.DirAssets, "arrow_down.png"), True)
    Activity.AddMenuItem3("","mnuSend", LoadBitmap(File.DirAssets, "arrow_up.png"), True)
    Activity.AddMenuItem3("","mnuSettings", LoadBitmap(File.DirAssets, "Setting-icon.png"), True)

Prior to installing 5.0 this worked fine, now the 4th menu item no longer shows its Icon.
 
Top