IamTrying Active Member Licensed User Nov 14, 2017 #1 In the designer i have told to not show the title bar. But when the app is running on the device it keep showing the title bar What am i doing wrong to hide the title bar?
In the designer i have told to not show the title bar. But when the app is running on the device it keep showing the title bar What am i doing wrong to hide the title bar?
DonManfred Expert Licensed User Longtime User Nov 14, 2017 #2 check the properties in the TOP of your MAIN Activity. Title, FullScreen Upvote 0
IamTrying Active Member Licensed User Nov 14, 2017 #3 Show title is uncheck and Full screen is uncheck. Still i see title bar of my app in real device. Upvote 0
DonManfred Expert Licensed User Longtime User Nov 14, 2017 #4 B4X: #Region Module Attributes #FullScreen: true #IncludeTitle: false #ApplicationLabel: Download List #VersionCode: 1 #VersionName: 1 #SupportedOrientations: unspecified #CanInstallToExternalStorage: False #End Region Upvote 0
B4X: #Region Module Attributes #FullScreen: true #IncludeTitle: false #ApplicationLabel: Download List #VersionCode: 1 #VersionName: 1 #SupportedOrientations: unspecified #CanInstallToExternalStorage: False #End Region
klaus Expert Licensed User Longtime User Nov 14, 2017 #6 Checking or unchecking these properties in Designer only adapts the AbstractDesigner window. Upvote 0
DonManfred Expert Licensed User Longtime User Nov 14, 2017 #7 klaus said: Checking or unchecking these properties in Designer only adapts the AbstractDesigner window. Click to expand... Thank you for clarifying. I was not aware of this. I just was wondering why it does not work for him. I did suggested to change it in the Activity code. But he did not pay attention. Upvote 0
klaus said: Checking or unchecking these properties in Designer only adapts the AbstractDesigner window. Click to expand... Thank you for clarifying. I was not aware of this. I just was wondering why it does not work for him. I did suggested to change it in the Activity code. But he did not pay attention.
klaus Expert Licensed User Longtime User Nov 14, 2017 #8 I did suggested to change it in the Activity code. ... Click to expand... That's how I understood it . Upvote 0
I did suggested to change it in the Activity code. ... Click to expand... That's how I understood it .
Ricky D Well-Known Member Licensed User Longtime User Nov 15, 2017 #9 You have to set title false in the activity just like Don said Upvote 0