ActionBar Ribbon Menu

aaronk

Well-Known Member
Licensed User
Longtime User
Hello,

I am trying to use the ActionBar class.

http://www.b4x.com/forum/additional-libraries-classes-official-updates/20751-class-actionbar.html

I am wanting to use the Ribbon part of it so there is a little sliding menu down the bottom of the page (I know I can use the menu button, but I want a sliding menu to be there all the time).

13520d1346093467-class-actionbar-ribbon.png


I can get it working by adding my own icons etc. but what I want to know is, how can I remove the scrolling bar from the view.

For Example:
If you move/scroll it left or right you see a bar showing you how far it has moved but I want to remove it so you can't see it.

Does anyone know how to remove this scroll bar?
(see the screenshot below of what I am talking about)

attachment.php
 

Attachments

  • screenshot1.png
    screenshot1.png
    18.1 KB · Views: 1,068
Last edited:

Informatix

Expert
Licensed User
Longtime User
I can get it working by adding my own icons etc. but what I want to know is, how can I remove the scrolling bar from the view.

For Example:
If you move/scroll it left or right you see a bar showing you how far it has moved but I want to remove it so you can't see it.

Does anyone know how to remove this scroll bar?
(see the screenshot below of what I am talking about)

attachment.php

Please post questions about a class or a library in the corresponding thread.
My reading of the "Updates and Questions" thread is very random.

That question has been answered in one of the tutorials.
 
Upvote 0

rgately

Member
Licensed User
Longtime User
Does anyone know how to remove this scroll bar?

I had this problem once and asked the same question. This is how I removed the scroll bar...

B4X:
' eliminate scrollbar lines from lists
Dim rCategories As Reflector   
rCategories.Target = svCategories
rCategories.RunMethod2("setHorizontalScrollBarEnabled", False, "java.lang.boolean")
 
Upvote 0
Top