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.
有没有办法让库中的任何类(可能是活动、视图或任何其他可以访问“魔术”方法的类)知道或查询使用它的应用程序的包名称?
如果是这样,怎么做?
在运行时拥有这种能力会很棒,但在构建/编译时拥有这种能力也会很好。
如果您有应用程序的上下文(例如,您可以在构造函数中将其传递到库中),您可以这样做:
context.getPackageName();
编辑:绝对不是在构建/编译时。