Android Question How to scroll panel created with AppCompat

A Z M JANNAT UL KARIM

Member
Licensed User
Hi, I had created panel as per appcompat project and added various controls. As my mobile screen is 5.5 inch, I can see all the controls but in a smaller screen the lowest controls not showed. I want to make the pContent panel to be scroll-able but it is not scrolling when required. Any one have any suggestion will be helpful.

Designer Script Here -

B4X:
If ActivitySize > 6.5 Then
    ActionBar.Height = 64dip
Else
    If Portrait = True Then
        ActionBar.Height = 56dip
    Else
        ActionBar.Height = 48dip
    End If
End If

pContent.SetTopAndBottom(ActionBar.Bottom, 100%y)
 
Top