Italian Full Screen e Show Title ok in Designer ma non funzinano sul compilato

t3radm

Member
Licensed User
Longtime User
Buongiorno e buona domenica, dopo il soliloquio del post precedente spero di trovare un'aiuto almeno a questo apparente semplice quesito...
Sono alla progettazione grafica del mio software e ho questo problema:

In Designer nelle proprietà dello screen generale (Activity) imposto "Show Title" su False, e "Full Screen" su True.
Quando connetto il device (Galaxy S3) in effetti vedo quello che mi aspetto cioè, barra del titolo (Activity) nascosta e schermata a pieno schermo.

Il problema che se anche salvo queste impostazioni quando compilo il programma sul cellulare queste configurazioni vengono ignorate :BangHead: distruggendomi il Layout.

Un'altra cosa per il momento meno importante, anche se il progetto è salvato e nel "Project" "Package Name" è stato dato il titolo originale, sul device mi trovo imperterrito il nome "B4A Example" titolo del progetto da cui sono partito ma di cui ora non vi è più traccia...


HELP ME TNX!! e Buona Domenica
 

klaus

Expert
Licensed User
Longtime User
You must set FullScreen and IncludeTitle on top of the code in Activity Attributes this can be fifferent for each activity.
You must set the ApplicationLabel on top of the code in the Main module.
B4X:
#Region  Project Attributes 
    #ApplicationLabel: TestProgram
    #VersionCode: 1
    #VersionName: 
    'SupportedOrientations possible values: unspecified, landscape or portrait.
    #SupportedOrientations: unspecified
    #CanInstallToExternalStorage: False
#End Region

#Region  Activity Attributes 
    #FullScreen: False
    #IncludeTitle: True
#End Region
This has changed since version 2.5.
The PackageName must be changed in the Project menu as before.

Best regards.
 

t3radm

Member
Licensed User
Longtime User
Thank you klaus for fast and accurate speech, sorry for my english.
So it works well :wav:
 
Top