我想测试应用程序中是否存在名为“test”的活动。可能在调用 startActivity 之前或在其 catch 块中使用 Manifest 文件以执行以下操作:
使用 Intent 和 SetClassName 启动 Activity
所以说:
if(test.exists){
Activity is registered and start it
}
else{
create Activity and add it in manifset programmatically, as this would be a dynamic Activity
}