I’m running into a problem starting other activities from mine. I know this must be being done elsewhere as there are so many launcher apps out there which much use package manager to start specific activities…
I can get an Acitivity name I would like to start from the package manager, but how can I somehow parse this and turn it into an intent? Baring in mind I can’t access the class… Also I would like to start that specific activity and not launch the MAIN intent from the package…
I’m sure someone must be doing this somewhere… It’s kind of the point in activities isn’t it?
You can use setClassName(String, String) on the Intent to avoid needing the other class.