Mark.S Member Licensed User Jan 28, 2018 #1 can you generate a _click event in code? i.e activate the spinner view within code.
E edm68 Member Licensed User Longtime User Jan 28, 2018 #2 Hi, I think this is what you are looking for: B4X: Dim j As JavaObject=Spinner1 j.RunMethod("performClick",Null) It requires the javaobject library. Upvote 0
Hi, I think this is what you are looking for: B4X: Dim j As JavaObject=Spinner1 j.RunMethod("performClick",Null) It requires the javaobject library.
Erel B4X founder Staff member Licensed User Longtime User Jan 29, 2018 #4 This is not the case here but it is worth mentioning that if you just want to run the Click event sub then you can call it directly: B4X: Button1_Click Upvote 0
This is not the case here but it is worth mentioning that if you just want to run the Click event sub then you can call it directly: B4X: Button1_Click