B4A Question Classes are soon coming... - Erel    Jun 4, 2012   (2 reactions)   tags: Classes to be released in about two weeks... Two small examples: 1. DraggableView class - wraps an existing view and makes it draggable (similar to the visual designer) 'Main activity module Sub...) Dim dv1, dv2, dv3 As DraggableView dv1.Initialize(Activity, Button1) dv2.Initialize(Activity...*************************** 'DraggableView class module Sub Class_Globals Private innerView As View Private panel1 As Panel... Initialize(Activity As Activity, v As View) innerView = v panel1.Initialize(""... B4A Question DraggableView Class help - rfresh    Apr 23, 2018 I'm trying to get the DraggableView example to work.
I'm getting an error: unknown type..., dv2, dv3 As DraggableView '<---- error on this line
dv1.Initialize(Activity, Button1... B4A Question draggableview parent click button - Addo    Apr 21, 2018 i am trying to use draggableview class from this thread
https://www.b4x.com/android/forum/threads/dragging-views.70882/
all works fine, but there is one problem , i have placed a button inside... B4i Question Rotate DraggableView - ykucuk    Mar 23, 2017 How can set draggableview to rotate by users touch ?... B4A Question DraggableView Class - Stop Dragging - DarkWolfalpha    Nov 7, 2021 I use this class in my project https://www.b4x.com/android/forum/threads/classes-are-soon-coming.18395/page-3#posts But I need to stop dragging sometimes and get back to pre-relocation(sometimes when I dragging Edit text and Stop dragging I can't use it)... B4J Question DraggableView class - redoctober57 (first post)    Jun 22, 2021 Hi Erel, thanks a million!... B4A Question DraggableView - ykucuk    Sep 26, 2013 Hello,
i need drag view X point to Z point.
I know that it is possible with DraggableView .
my question is if my view is hit (over) Z point i want make view non-draggable. other words i have to lock it.
it s like puzzle game. how to do it ?
any help ?... B4A Question Remove DraggableViews - ALBRECHT (first post)    Apr 18, 2020   (1 reaction) Ok , it works like you said:
- add to the class :
Sub MoveView(Dur As Int, Posx As Int, Posy As Int, wi As Int, he As Int)
innerView.SetLayoutAnimated(Dur, Posx, Posy, wi, he)
panel1... B4A Question DraggableView view is not working on my new tablet - LucaMs (first post)    Dec 29, 2017   (1 reaction) You should describe better the problem.
It could be a problem of elevation of panels (Panel1.Elevation = 2dip or more)... B4A Question DraggableView Click event - Erel (first post)    Dec 5, 2017 The problem is that the touch event consumes the touch gesture. One option is to analyze the touch sequence yourself and decide when to treat it as a movement and when to treat it as a long click.
Se... Page: 1   2   3   4   5   6   7   |