Double Click event

Discuss GUI programming with the RapaGUI plugin here
Post Reply
sashapont
Posts: 152
Joined: Thu Aug 03, 2017 2:49 pm

Double Click event

Post by sashapont »

Double Click event for listview is not work in Android. How I can fix that?
PEB
Posts: 567
Joined: Sun Feb 21, 2010 1:28 am

Re: Double Click event

Post by PEB »

On Android you'd probably want a long-press event instead.
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Double Click event

Post by airsoftsoftwair »

PEB wrote: Thu Mar 07, 2019 9:47 am On Android you'd probably want a long-press event instead.
....which is actually already supported by RapaGUI 2.0 on Android. Use Listview.LongClick [N] for that.
sashapont
Posts: 152
Joined: Thu Aug 03, 2017 2:49 pm

Re: Double Click event

Post by sashapont »

Unknown notification "LongClick"
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Double Click event

Post by airsoftsoftwair »

Works here. Demo code please.
djg
Posts: 16
Joined: Wed Feb 12, 2020 10:37 pm

Re: Double Click event

Post by djg »

airsoftsoftwair wrote: Thu Mar 07, 2019 3:28 pm
PEB wrote: Thu Mar 07, 2019 9:47 am On Android you'd probably want a long-press event instead.
....which is actually already supported by RapaGUI 2.0 on Android. Use Listview.LongClick [N] for that.
I use Hollywood 8.0 but am still on RapaGUI 1.2. Can it be downloaded from somewhere? On the Hollywood site the most recent version appears to be 1.2.

Also, I wonder why I would probably want a long-press event instead? Seems like a waste of time. :)
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Double Click event

Post by airsoftsoftwair »

djg wrote: Sat Jun 27, 2020 11:44 am I use Hollywood 8.0 but am still on RapaGUI 1.2. Can it be downloaded from somewhere? On the Hollywood site the most recent version appears to be 1.2.
2.0 is currently only available for Android. It's hard-coded into Hollywood 8.0 for Android. Release for other platforms is still to come.
djg wrote: Sat Jun 27, 2020 11:44 am Also, I wonder why I would probably want a long-press event instead? Seems like a waste of time. :)
Long press is useful on touch devices only.
djg
Posts: 16
Joined: Wed Feb 12, 2020 10:37 pm

Re: Double Click event

Post by djg »

airsoftsoftwair wrote: Sun Jun 28, 2020 8:56 pm
djg wrote: Sat Jun 27, 2020 11:44 am I use Hollywood 8.0 but am still on RapaGUI 1.2. Can it be downloaded from somewhere? On the Hollywood site the most recent version appears to be 1.2.
2.0 is currently only available for Android. It's hard-coded into Hollywood 8.0 for Android. Release for other platforms is still to come.
djg wrote: Sat Jun 27, 2020 11:44 am Also, I wonder why I would probably want a long-press event instead? Seems like a waste of time. :)
Long press is useful on touch devices only.
That's good to know.
So, as I understand it, you can use Listview.LongClick in a script or applet running on Android,
but not yet use it when compiling on Windows with the APK-compiler?

Regarding that long press, I just meant that I don't see why one would probably want that instead of double tapping.
In fact, personally I would prefer the latter.
Post Reply