Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Muhammadyoussef/6942bb7301bb9a868bfbb487879d8052 to your computer and use it in GitHub Desktop.
Save Muhammadyoussef/6942bb7301bb9a868bfbb487879d8052 to your computer and use it in GitHub Desktop.
public @NonNull Activity instantiateActivity(@NonNull ClassLoader cl, @NonNull String className,
@Nullable Intent intent)
throws InstantiationException, IllegalAccessException, ClassNotFoundException {
return (Activity) cl.loadClass(className).newInstance();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment