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
It may not be the most relevant answer for your question, but it's generally bad to hardcode class name literals as strings. It might be better to use
Class> act = TestActivity.class;
syntax.