M Marion Opperman Member Licensed User Longtime User Apr 17, 2016 #1 Hi There, Is there any way in B4A to set the setFilterTouchesWhenObscured on a view. I expect it is ossible with reflection, but am unsure as to how this would be done. Thanks
Hi There, Is there any way in B4A to set the setFilterTouchesWhenObscured on a view. I expect it is ossible with reflection, but am unsure as to how this would be done. Thanks
somed3v3loper Well-Known Member Licensed User Longtime User Apr 18, 2016 #2 Did you try something like this ? B4X: dim jo as JavaObject jo = yourview jo.RunMethod("setFilterTouchesWhenObscured",array (true)) Upvote 0
Did you try something like this ? B4X: dim jo as JavaObject jo = yourview jo.RunMethod("setFilterTouchesWhenObscured",array (true))
M Marion Opperman Member Licensed User Longtime User Apr 28, 2016 #3 aaah, i think that will do. thanks Upvote 0