ddefrain Member Licensed User Longtime User Jun 23, 2021 #1 Hi All. Is it possible to scroll a CustomListView with a Timer like manual scrolling (Not With JumpToItem) CustomListView Thank's in Advance Best Regards.
Hi All. Is it possible to scroll a CustomListView with a Timer like manual scrolling (Not With JumpToItem) CustomListView Thank's in Advance Best Regards.
Solution Erel Jun 24, 2021 B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Looks good in release mode.
B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Looks good in release mode.
Erel B4X founder Staff member Licensed User Longtime User Jun 24, 2021 #2 B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Looks good in release mode. Upvote 0 Solution
B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Looks good in release mode.
ddefrain Member Licensed User Longtime User Jun 24, 2021 #3 Erel said: B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Looks good in release mode. Click to expand... Thank's for the reply @Erel Then I think I need to move to xCustomListview 'cause I don't see the ScrollViewOffsetY propertie in the current CustomListView ....or is it possible to implement the ScrollViewOffsetY in the old CustomListView?, 'cause it's a huge project. Upvote 0
Erel said: B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Looks good in release mode. Click to expand... Thank's for the reply @Erel Then I think I need to move to xCustomListview 'cause I don't see the ScrollViewOffsetY propertie in the current CustomListView ....or is it possible to implement the ScrollViewOffsetY in the old CustomListView?, 'cause it's a huge project.
Erel B4X founder Staff member Licensed User Longtime User Jun 25, 2021 #4 You should switch to xCLV. It is quite simple to change. It will allow you to use many things such as XUI Views and more. Upvote 0
You should switch to xCLV. It is quite simple to change. It will allow you to use many things such as XUI Views and more.
ddefrain Member Licensed User Longtime User Jun 25, 2021 #5 Erel said: You should switch to xCLV. It is quite simple to change. It will allow you to use many things such as XUI Views and more. Click to expand... Thank's for the reply @Erel I will move to XUI Views then; Moving to that one I will use the Drawer (Appcompat) too. I'd created a new project with the sample you gave me and works like a charm B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Thank's Best Regards! Upvote 0
Erel said: You should switch to xCLV. It is quite simple to change. It will allow you to use many things such as XUI Views and more. Click to expand... Thank's for the reply @Erel I will move to XUI Views then; Moving to that one I will use the Drawer (Appcompat) too. I'd created a new project with the sample you gave me and works like a charm B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Thank's Best Regards!
ddefrain Member Licensed User Longtime User Jun 28, 2021 #6 ddefrain said: Thank's for the reply @Erel I will move to XUI Views then; Moving to that one I will use the Drawer (Appcompat) too. I'd created a new project with the sample you gave me and works like a charm B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Thank's Best Regards! Click to expand... As @Erel says it is very simple and easy to implement XUI Views Here are my final results (SQL Server Connection) Thank's @Erel Best Regards ? Last edited: Jun 28, 2021 Upvote 0
ddefrain said: Thank's for the reply @Erel I will move to XUI Views then; Moving to that one I will use the Drawer (Appcompat) too. I'd created a new project with the sample you gave me and works like a charm B4X: Do While True CustomListView1.sv.ScrollViewOffsetY = CustomListView1.sv.ScrollViewOffsetY + 3dip Sleep(15) Loop Thank's Best Regards! Click to expand... As @Erel says it is very simple and easy to implement XUI Views Here are my final results (SQL Server Connection) Thank's @Erel Best Regards ?