B4A Question [Solved]Using Reflector lib Versus to using JavaObject lib - Theera    May 22, 2025 ("setVolume", Array(0.0, 0.0))
Sub MuteVideo(videov As VideoView)
Dim r1, r2 As Reflector
r1... Sub
Sub UnMuteVideo(videov As VideoView)
Dim r1, r2 As Reflector
r1.Target = videov
r1... B4J Question Reflector - AddEventHandler, but... RemoveEventHandler? - LucaMs    Aug 4, 2024 Reflector has the AddEventHandler method, but not the RemoveEventHandler; how to do?... B4A Question ASK about Reflector - Theera    Jun 19, 2013 Hi all, I've some questions which linked this. Please to answer this thread.... B4A Question Is it possible to fetch an object properties using Reflector? - Addo    Apr 30, 2020 Can Reflector library fetch an object properties names?
I know that i can use Reflector library to setfields to some properties.
But can i use it to read an object properties names ?... B4i Question B4i replacment "Reflector" - tariqyounis    Sep 12, 2020 Dim r As Reflector
r.Target = WebView1
r.Target = r.RunMethod("getSettings")
r.RunMethod2("setBuiltInZoomControls", True, "java.lang.boolean")
r.RunMethod2("setDisplayZoomControls", False, "java.lang.boolean")
What shall I do to activate the event "WebView1_PageFinished(Url As String)" as it is working in B4A... B4A Question when to use Reflector and JavaObject or Do Wrapper in java - Roberto P.    Nov 28, 2019   (1 reaction) I saw that the cameraEx class that was completely created using the Reflector and JavaObject object to access the library methods rather than creating an external Java library.
Can you explain me... B4A Question SetField of a Type with Reflector or JavaObject ? - TelKel81    Jan 14, 2020 of that type since the fieldname IS what the string value will be. How to do it with Reflector or JavaObject ?
Dim r As Reflector
r.Target = BiomeType
r.Target = r.RunMethod("getClass"... B4A Question reflector.runMethod("getWidth") always returns 0 - Oliver Simith (first post)    Aug 18, 2024
Reflector will not help.
It will be difficult to get the actual size once you set the width to -2. You should instead use anchors and designer script to set the layout yourself.
Using anchors and a designer script is likely not a possible option for me because my customized class is intended to... B4A Question JavaObject to Reflector - Star-Dust    Feb 9, 2018 I tried to transform a code that uses the JavaObject Library into Reflector. So do not use too many...))
This don't work :confused:
Dim Re As Reflector
Re.Target=SearchButton.Background
Re.RunPublicmethod... B4A Question Reflector.SetOnClickListener not working in release build - Computersmith64    Apr 3, 2018   (1 reaction) I have a class that keeps a reference to an ImageView (that is on the layout in my Main Activity) as one of its members. When I initialize the class, I use reflector to set the onClickListener for...)
Private r As Reflector
r.Target = mImage
r.SetOnClickListener("machineClick... Page: 1   2   3   4   |