Android Question Maximum height for image

helmut25

Member
Hello,
how can it be achieved that an image in the startpage occupies the entire screen?
Second question: in the upper margin of the screen appears the string "Activity".
How can I get rid of this?

thanx, Helmut
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0

helmut25

Member
Thanks for the answer.
I already noticed that I can delete the title text in the properties.
but the empty space in the upper margin remains!
I want the image to fill the entire screen, to the full height.
How can I get rid of the empty space?
 
Upvote 0

helmut25

Member
Set the #IncludeTitle to False and #FullScreen to True. In the main module at the top.
I have done that, but to no avail. The empty space of the title bar remains.
I have thought that I could split my image in two parts and insert the upper part in the title bar.
Is this possible and how?
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
I wasn't clear enough before. You should set these attributes:
B4X:
#Region  Activity Attributes
    #FullScreen: True
    #IncludeTitle: False
#End Region

1633582025097.png
 
Upvote 0
Top