gpt4 book ai didi

android - 我是否必须在 list 文件中声明每个 Activity ?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:50:50 25 4
gpt4 key购买 nike

我想创建一个 Activity 但不必在 list 文件中声明它。这可能吗?在我看到的所有地方,似乎每个 Activity 都必须在 list 中声明,但我注意到一些 Activity ,例如内置的 ChooserActivity,并没有在我的 list 文件中声明。

最佳答案

简短回答:是的,应用程序中的每个 Activity 都必须在 list 中声明。如 Android 文档中所述, list 的目的(除其他事项外)是:

It describes the components of the application — the activities, services, broadcast receivers, and content providers that the application is composed of. It names the classes that implement each of the components and publishes their capabilities (for example, which Intent messages they can handle). These declarations let the Android system know what the components are and under what conditions they can be launched.)

http://developer.android.com/guide/topics/manifest/manifest-intro.html#ifs

因此,您的应用程序中的任何 Activity 类必须在您的 list 中定义。 Intent 、服务等也是如此,即使这些组件无法从您的应用程序外部访问。

至于 ChooserActivity 和您没有在代码中定义的任何其他 Activity,它们将在另一个 Manifest 中有自己的定义。如果出于某种原因您决定在您的应用程序之外子类化一个现有的 Activity,那么您也必须在您的 Manifest 中定义它。

关于android - 我是否必须在 list 文件中声明每个 Activity ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20532674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com