iOS Question Brx Pages Scrollview question

grant1842

Active Member
Licensed User
Longtime User
Hello all .

I am loading a scrollview to display 6 views (panels, etc)

My problem is it scrolls to the 4th panel and not the 5th and 6th panels.

I am makeing this app for b4i, and b4a.

my code:
Class_Globals
Private pnlscrollview As B4XView

'This event will be called once, before the page becomes visible.
Private Sub B4XPage_Created (Root1 As B4XView)

Root = Root1
    Root.LoadLayout("MainPage")
   
    ScrollView1.ScrollViewInnerPanel.LoadLayout("settings")
   
    ScrollView1.ScrollViewContentWidth = 100%x
    ScrollView1.ScrollViewContentHeight = pnlscrollview.Height

has anyone seen this.

all so in android it does not scroll at all.
Any help is appreciated.
Thaks
 
Last edited:

grant1842

Active Member
Licensed User
Longtime User
Ok thx
I will look at listview

I may use scroll view as scrollview
If #b4i then
Scrollview as scrollview
If b4a
Scrollview as scrollview

instrd of scrollview as B4i-Bridge view

is this acceptable way to do this
 
Upvote 0
Top