className | Specifies the Java class name (e.g. java.lang.String ). |
Construct an AndroidJavaClass from the class name.
This essentially means locate the class type and allocate a java.lang.Class
object of that particular type.
// Try to collect some Java garbage.. function Start() { var jc = new AndroidJavaClass("java.lang.System"); jc.CallStatic("gc"); }
no example available in C#
// Retrieve the manufacturer of the product/hardware. function Start() { var jc = new AndroidJavaClass("android.os.Build"); var manufacturer = jc.Get.<String>("MANUFACTURER"); }
no example available in C#
Did you find this page useful? Please give it a rating: