自定义 Android 应用程序启动器

发布于 2024-10-20 17:43:48 字数 169 浏览 2 评论 0原文

我想创建一个应用程序“菜单”,其中包含 4 或 5 个图标,这些图标启动特定于我公司的海关应用程序。 Android 有具体的方法吗?

我不知道它到底叫什么,谷歌搜索“android launcher”、“menu”和“application shell”只会带来很多不相关的静态信息。用安卓的话说这叫什么?

I want to create an application "menu" which houses 4 or 5 icons which launch customs applications specific to my company. Is there a specific way to do this in Android?

I don't know what it would be called, exactly, and googling "android launcher", "menu" and "application shell" just bring up a lot of unrelated static. What's this called in android parlance?

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

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

发布评论

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

评论(4

鹿港巷口少年归 2024-10-27 17:43:48

Wufoo,

听起来您想要一个应用程序仪表板。 Google iosched 示例程序可能会让您走上正确的道路:http://code.google.com/p /iosched/

除非您想让设备仅启动您的应用程序,否则您的应用程序将完全替代启动器。启动器被描述为...

该活动可以是任务的初始活动,并在顶级应用程序启动器中列出。

但这可能不是您想要的。

Wufoo,

It sounds like you want an application dashboard. The Google iosched example program might get you on the right path: http://code.google.com/p/iosched/

Unless you mean to have the device ONLY launch your applications, then your app would be a complete Launcher replacement. The Launcher is described as...

The activity can be the initial activity of a task and is listed in the top-level application launcher.

But that may no be what you want.

云之铃。 2024-10-27 17:43:48

您想替换设备主屏幕并充当默认启动器吗?

如果是这样,您可以按照此答案使用一些意图过滤器:

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.HOME" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

Do you want to replace the device home screen and act as the default launcher?

If so you can use some intent filters as per this answer:

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.HOME" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>
郁金香雨 2024-10-27 17:43:48

您可以使用主屏幕文件夹来管理任意组的应用程序启动器图标。长按主屏幕背景并选择“文件夹”进行实验。

You can use home-screen folders to manage arbitrary groups of app launcher icons. Long-press on the home-screen background and select "Folder" to experiment.

末が日狂欢 2024-10-27 17:43:48

信息亭模式。您可以对此进行自定义(禁止访问菜单、限制添加应用程序等)http://code .google.com/p/android-launcher-plus/

Kiosk Mode. You could customise this (disable access to menu, limit application addition etc) http://code.google.com/p/android-launcher-plus/

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