How does android register an activity from the android manifest file so that it appears in package manager. I do understand that this is done at the time of app installation. Is there a way to tweak the android source to create an API to dynamically create and register activities ?
Share
you should have look HERE to get All the Information about how Android Menifest file Works and how you can register your activity in it.
AFAIK you can not able to Create Dynamic Activity as it will not be defined in Android Menifest file. you must have to defined it to Manifest file to create an instance of that Activity to Use it in your Code.