Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
调用意图时,我看到两种类型:
什么时候应该使用?
使用第一个,它更容易,只需要 1 行代码:
new Intent(context, MyActivity.class);
如果您在编译时不知道类,则只需要使用第二种形式(即:您需要在运行时选择类并且您只有其名称作为字符串)。