I can't help you there either, make an example project which shows the error.
Hi Alexander, first of all thanks for your appreciated help.
Here is a post where I you can see layout files and other details:
Hi all, I am testing the implementation of an (extended) layout within a B4XPages project in B4A and B4i version for an important B4XPages project. TEST See the attached images "b4xpages_bal" and "b4xpages_bil". Within B4A all ui elements added to the layout are displayed correctly. Within B4i...
www.b4x.com
Note: as suggested by
@Andrew (Digitwell) I set the wvCardDesc V. Anchor to top only (see post above #5).
So the 100% (vertical with scrolling) of the page is displayed correctly ONLY when the LoadCard() sub running within B4XPage_Resize event (#iPhoneOrientations: Portrait)
The B4XPage_Resize event is triggered only the first time the B4XPage page is opened (.ShowPage)....
Sub B4XPage_Resize (Width As Int, Height As Int)
Log("EVENT - BusinessCard::B4XPage_Resize")
LoadCard (AppGlobals.CardFullContent)
End Sub
If the user returns to the previous page and touches another item in the list and the page is called again with ".ShowPage()", the _Resize event is no longer triggered but the "B4XPage_Appear" event is triggered:
Private Sub B4XPage_Appear
Log("EVENT - BusinessCard::B4XPage_Appear")
LoadCard (AppGlobals.CardFullContent)
End Sub
The _Appear event executes exactly the same sub (LoadCard) as the -Resize event but the problem is that the page view is found: the views starting from "lblAddressHeader" on are not displayed.
Here this is the problem I am banging my head on and I can't figure out how to fix it.