scrollview

  1. G

    Android Question xcChart on ScrollView

    ScrollView1.Panel.AddView(chartalt, 0, 0, 100%x, 300dip) throws an error. xChart cannot be converted into view. How can I put a chart on a scrollview? Or is there any other method to put 4 xcharts on a scrollable panel (or whatever that scrolls)? I need 4 charts because the values on the...
  2. M

    Android Question Group a List of names by Month Date into some kind of UI list

    Hi all, Continuing with my Birthday app, I would like to list the persons by their birthday month number and display those names and other data into some kind of list, in that group. I have an example image where the names are listed as I mention. I've experimented with the CustomListView with...
  3. A

    Android Question [SOLVED] Background color in a scrollview with 5 columns

    Hello, I'm trying to build a ScrollView with 5 columns. In B4XMainPage, I have a function CreateMainList wich create the ScrollView, define the definitions of cols, create the line of title and populate the ScrollView Private Sub B4XPage_Created (Root1 As B4XView) Root = Root1...
  4. J

    Android Question How to copy Scrollview contents to CustomListView

    I have several tall and wide reports that are produced on a scroll panel. It is currently being done programmatically and scrolls vertically (and horizontally on iOS). How can I transpose or copy a scroll panel for all its contents to a CustomListView to gain the ability to scroll horizontally...
  5. modiranghaneipour

    Android Tutorial HOW YOU CAN USE ScrollView

    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...
  6. P

    B4X Buttons grid example

    Check out the new version in message #3. Did you ever wanted to put a lot of buttons on a screen and have them fill the screen? No, not yet? Then here's how you can accomplish that. What does it look like on different devices? The 100 buttons are placed on a panel (or pane) and...
  7. peacemaker

    Wish Any ScrollView with open source code: add DisabledScrolling as Boolean

    If one scrolling container has another internal object that is also scrollable - outer view's scrolling should be disabled, when you try to scroll the internal object (_MouseEntered). So, the view should be "enabled", but with "DisabledScrolling" until your _MouseExited from the internal object.
  8. Joey249

    Android Question B4xPages Can't get xCLV to scroll while also using a ScrollView

    Hi, I have a layout set out which uses a ScrollView and then one CustomListView on the main layout, the ScrollView works to scroll the page, however the CustomListView does not scroll*. *The CustomListView actually scrolls when running from LeapDroid emulator, but not on my actual phone or...
  9. N

    Android Question scrollView cant connect to Sql database (internal Sql )

    Hello, I had asked about my problem near week ago and it solved but when I made a new Activity and new layout with scrollview Unfortunatly I faced conecting scrollview and Sql table ,I couldnt figur out how to solve it even I tried so much thus I decided to ask if any body can give me hand in...
  10. E

    Android Question B4XPages and Scrollview

    I didn't find any topic or tutorial on how to use Scrollview with B4XPages on the forum. Could someone please help.
  11. behnam_tr

    Android Question [Solved] countdown Timer in Scrollview

    Hi everyone I want to use the countdown timer inside the scrollview, but after several hours of trying, I did not get the result! The times will be different and must be set when creating, for example, one should be 1 hour, one should be 7 hours and... And the important thing is that an...
  12. jroriz

    Android Question [SOLVED] Find word in long text and position scrollview

    Based on post #14 in this thread I created a simple application, just to show a long scrollable text. Now I need to find a word within the text and position the view on that word. Could anyone help? The hole "project" is below and the long text (not that long, just to help...) is attached: Sub...
  13. alirezahassan

    B4J Question how to use scroll view in b4j

    hi all, i want to add some pane to scroll view, but i can't find any Programming command like "addview". for example: Dim sc As ScrollView sc.Initialize("") sc.Panel.AddView(...)
  14. DALB

    Android Question customlistView type

    Hello in this code which is in a loop, I wish to test every view. 'lst' is a list containing all the views of the designer For each ... Dim w As CustomListView=lst.Get(i) If w.AsView Is ScrollView(or CustomListView) Then lab=lst.Get(i) doSomething End...
  15. M

    Android Question B4XPlusMinus on ScrollView

    Hello everybody, I try to use custom controlls on the ScrollView. 1) I load the layouts with b4xplusminus controls, 2) I make the array of the controls and with panels with the code: Mood = Array As B4XPlusMinus (B4XPlusMinus1, B4XPlusMinus2, B4XPlusMinus3,B4XPlusMinus4) pan = Array As Panel...
  16. K

    Android Question struggling with scrollview

    Hi all, First post to the community and have searched hi and low for the answer (I promise - but do shame me if I have missed the answer!) I am trying to handle the screen layout when the keyboard is active, so the screen would essentially push of the top of the screen until the keyboard has...
  17. M

    iOS Question ScrollView content goes OUT of Scrollview

    hi everyone, i was using the scrollview but i don't know why if i load a layout in the scrollview, when i scroll it goes out of the scrollview D: scrlInfo.Panel.LoadLayout("info_layout") scrlInfo.SetShadow(Colors.Black, 0, 0, 0.2, False) scrlInfo.Visible = False scrlInfo.ContentHeight =...
  18. Alexander Stolte

    Android Example [B4X] [XUI] ASTabMenu with xCustomListView Example

    Hello Forum, in this Example i want to show you, how to use the ASTabMenu togehther with the xCustomListView, to handle a lot of Tabs without getting into layout problems. Attached is a B4A Example. Result: How to use? it is easy. Add a xCustomListView to the form Add a new Form with only the...
  19. DALB

    Android Question How to get the text of an editext in a panel in scrollview

    Hello everyone. I have a layout named PNLS In PNLS I have 2 labels and 1 EditText TXTS With a loop, I add some panels PNLS in a scrollview named SCV I invite the user to entrer datas in the editTexts named TXTS Question: How can I get the texts of each editText (to next insert in a SQLite...
  20. M

    iOS Question [SOLVED] ScrollView error with TabBarController

    Hi everyone, i'm trying to code an app structued like so: - Splash Screen where i test internet connection - Login Form - Home (With a Scroll view inside) After Login will appear Home page and then the KeyController will switched to TabBarController. Doing like so the ScrollView get blank and...
Top