barx Well-Known Member Licensed User Longtime User May 27, 2012 #1 Hi, Could you please add a .RemoveExtra() method to the intentwrapper. The required info is Here Thanks
Hi, Could you please add a .RemoveExtra() method to the intentwrapper. The required info is Here Thanks
Erel B4X founder Staff member Licensed User Longtime User May 28, 2012 #2 For now you can do it with the Reflection library: B4X: Sub RemoveExtra(i As Intent, Key As String) Dim r As Reflector r.Target = i r.RunMethod2("removeExtra", Key, "java.lang.String") End Sub
For now you can do it with the Reflection library: B4X: Sub RemoveExtra(i As Intent, Key As String) Dim r As Reflector r.Target = i r.RunMethod2("removeExtra", Key, "java.lang.String") End Sub
barx Well-Known Member Licensed User Longtime User Jun 2, 2012 #3 No I didn't Erel. I'm not quite a seasoned reflector yet. Thanks for the tip.