Android Question [SOLVED] Logo in Titlebar of App

Peter Lewis

Active Member
Licensed User
Longtime User
Hi All

In B4xPages we have the option of the Title text via code. I have put the app into full screen mode as well as switching off the title in designer but I still get the Text "MainPage" . I would like to replace that whole area with a logo or it that cannot be done I want to make sure that area is not displayed so that I could add a imageview in a header panel.

This is the area I am looking at

Thank you

WhatsApp Image 2021-02-19 at 15.22.24.jpeg
 

roumei

Active Member
Licensed User
You could try to set #IncludeTitle: False in the Main module:
B4X:
#Region  Activity Attributes
    #FullScreen: False
    #IncludeTitle: False
#End Region
 
Upvote 0
Top