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.
在android app中,包含ABC&D四个activity,我们可以通过B和C两种方式进入D Activity。而我在D Activity如何识别我来自B还是C的Activity?
不,对不起。没有内置机制,您可以在 Intent 的 Extras 中设置布尔值来验证调用者活动。
尝试这个
Intent intent = getIntent(); intent.getComponent().getClassName());
看看有没有帮助