我可以声明一个 IntentFilter 操作为“Main”的 PreferenceActivity 吗?和“启动器”的类别?

发布于 2024-12-26 14:54:55 字数 141 浏览 0 评论 0原文

除了首选项屏幕之外,我的应用程序根本没有用户界面(通知除外)。我可以将首选项屏幕设置为“主”屏幕/用户双击我的应用程序图标时看到的内容吗?

我找不到任何可以做到这一点的示例,并且在谷歌上搜索指导只会出现各种 3rd-party Launcher 比较。

My app will have no user interface at all (exept for notifications) except for the Preferences screen. Can I make the Preferences screen the "main" screen/what the user sees when they 2-click my app's icon?

I can't find any examples that do that, and googling for guidance just turns up all kinds of 3rd-party Launcher comparisons.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没有 2025-01-02 14:54:55

是的,这是可能的,只需将相关的意图过滤器添加到活动中即可

  <activity
        android:name="android.preference.cts.PreferenceFromCodeActivity" >
          <intent-filter >
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

Yes it is possible, just add the relevant intent-filter to the activity

  <activity
        android:name="android.preference.cts.PreferenceFromCodeActivity" >
          <intent-filter >
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文