B4A Tutorial ScrollView example - Erel    Nov 16, 2010   (4 reactions) The ScrollView is a very useful container which allows you to show many other views on a small screen.
The ScrollView holds an inner panel view which actually contains the other views.
The user... B4A Code Snippet B4A Page scrolling in fullscreen mode using a scrollview - PaulMeuris    Jun 3, 2024   (7 reactions) In this little app example the screen is set in fullscreen mode and doesn't include a title. #Region Activity Attributes #FullScreen: True #IncludeTitle: False #End Region The layout contains a B4XSwitch, a CustomListView, a multiline edittext view and button. 154283 When the switch is off the scrolling of the CustomListView and the EditText view work as expected. When the user taps... in the scrollview as you want. Horizontal scrolling should also work as usual. You can find... B4A Tutorial ScrollView example with a Panel higher than the screen - klaus    Jul 11, 2017   (11 reactions) Attached you find an example with a ScrollView with a Panel higher than the screen.
The layouts are designed in the Designer, not in the code.
There are 2 layout files:
- Main with the ScrollView... B4A Tutorial ScrollView examples summary - klaus    Jul 31, 2013   (19 reactions)   tags: klaus, scroll There are many ScrollView examples on the forum, I made a summary of them for my own use and... a checkbox
http://www.b4x.com/basic4android/images/20110106_01.png
ScrollView example Image ScrollView... B4A Tutorial HOW YOU CAN USE ScrollView - modiran_ghaneipour    Mar 11, 2025   (5 reactions) hello if you have a panel and you want scroll this panel then you use this source. at first create scrollview in source code then cut views in your panel and paste in scrollview panel now show this ' ______________________________________ If scvSetup.IsInitialized = False Then scvSetup.Initialize(0) Activity.AddView(scvSetup, 1%x, 0%y, 98%x, 100%y) For Each... use variable in global Sub Globals Private scvSetup As ScrollView 'These global... B4A Code Snippet ScrollView properties - klaus    Sep 8, 2017   (14 reactions)   tags: scrollview property Subject: Routines to managing ScrollView properties. Sub: setVerticalScrollBarEnabled Description: Displays or hides the vertical ScrollBar of the ScrollView. 'displays or hides the VerticalScrollBar of the ScrollView Sub setVerticalScrollBarEnabled(v As View, Enabled As Boolean) Dim jo... the vertical fading edges (shadows at top and bottom) of the ScrollView. 'enables the VerticalFadingEdge of the ScrollView 'the VerticalFadingEdges are the 'shadows' on top and bottom... B4A Tutorial Creating a table view based on ScrollView - Erel    Dec 17, 2010   (1 reaction) A much improved version is available here. You can use the code in this example to show data in tabular form. http://www.b4x.com/basic4android/images/table_1.png The table is made of two main views. The header row is made of a panel with labels. The main cells component is made of a ScrollView with labels as the cells. You can modify the code to change the table appearance. Some of the settings can be changed in Sub Globals: 'Table settings HeaderColor = Colors.Gray... B4i Code Snippet RefreshControl for TableView and ScrollView - narek adonts    Mar 26, 2016   (7 reactions) Add a UIRefreshControl to your TableView or ScrollView TABLEVIEW Public Sub AddRefresh... { UIRefreshControl *refreshControl=sender; ]; } #END IF SCROLLVIEW Public Sub AddRefresh (ScrollView as ScrollView) Dim nome as NativeObject=Me nome.RunMethod("AddRefresh:",Array(ScrollView)) End Sub Sub refreshing(RefreshControl As Object) ' DO YOUR REFRESHING...) ' END REFRESHING End Sub #IF OBJC -(void)AddRefresh: (UIScrollView*)scrollView... B4J Tutorial [BANanoWebix] Lesson 24 ScrollView - Mashiane    Jul 2, 2019   (1 reaction) Phew... Lesson 24 is about the scrollview. One can use this to host divs and other stuff that they might need to scroll. 81834 In this example we have created a scrollview with both X and Y scrolling active. To demonstrate this we set the width and height of the scrollview to be minimal and just added numerous rows to it as depicted below. Sub Init(pgContainer As String) pg.Initialize("", pgContainer).SetHeader("Lesson 24: ScrollView") ' Dim sv... B4A Tutorial ScrollView example with multiselection and SQL - klaus    Apr 23, 2011   (1 reaction)   tags: List selection Here is another ScrollView example with:
- adding a row
- moving a selected row up and down
- mono-selection, clicking on one row selects it, clicking on another row unselects the previous one and... Page: 1   2   |