If I have an Activity class called TestActivity in my application, is there a way to get its class by its name like in this example:
Class> c = getCl
The Class.forName seems to have exceptions on it. This is just to expand upon the above to address this issue.
try { t = Class.forName("com.package.classname"); } catch (Exception ignored){}