在另一个 Android 应用程序中调用其他应用程序

发布于 2024-10-21 04:33:41 字数 181 浏览 2 评论 0原文

在 android 上编程时遇到了障碍。有什么方法可以更改 android 模拟器中的默认桌面吗?到目前为止我唯一实现的就是卸载系统应用程序。我知道只有应用程序才能有图标......对吗?有什么方法可以让应用程序在启动时显示一组图标(可能是也可能不是单独的应用程序)? 单击这些图标后,将启动应用程序或活动......对此问题的任何帮助将不胜感激。

Have reached a block while programming on android.Is there any way to change the default desktop in the android emulator? The only thing i have achieved till now is uninstalling the system applications.I understand that only an application can have an icon...right? Is there any way that an application when launched displays a set of icons (which may or may not be separate applications)?
On clicking these icons either an application or an activity is launched....any help on this matter would be highly appreciated.

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

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

发布评论

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

评论(2

◇流星雨 2024-10-28 04:33:41

此答案提供了更多信息。

Android 中的 Home 应用程序
开源项目只能构建
作为固件映像的一部分。它不是
设计为仅使用
SDK。有一个示例首页
不过,您的 SDK 中的应用程序
使用 SDK 构建。

所以,如果您的目标是创建一个
独立更换主屏幕
应用程序,使用 SDK 中的 Home 应用程序作为
起点。如果您的目标是
创建替换固件,下载
整个固件并构建它
方式。

以下是家庭示例应用的链接。

This answer gives more information.

The Home application in the Android
open source project can only be built
as part of a firmware image. It is not
designed to be compiled just using the
SDK. There is a sample Home
application in your SDK, though, that
builds with the SDK.

So, if your goal is to create a
replacement home screen standalone
app, use the Home app in your SDK as a
starting point. If your goal is to
create replacement firmware, download
the entire firmware and build it that
way.

Here is a link to the Home sample app.

遗忘曾经 2024-10-28 04:33:41

SDK 附带的示例中有一个示例,这里有更多信息:

http://developer.android.com/resources/samples/Home/index.html

请务必将这些行添加到 Intent 过滤器中的 AndroidManifest.xml 中:

            <category android:name="android.intent.category.HOME"/>
            <category android:name="android.intent.category.DEFAULT" />

当您点击“home”按钮时,您应该两个选项; Android 启动器,以及您编写的替代启动器。我相信在那里,你可以选择默认。您可以通过清除设置/应用程序/管理应用程序/启动器/清除默认值下的设置来更改默认值。

there is an example in the samples included with the SDK, here is a little more info:

http://developer.android.com/resources/samples/Home/index.html

be sure to add these lines to your AndroidManifest.xml in the intent filters:

            <category android:name="android.intent.category.HOME"/>
            <category android:name="android.intent.category.DEFAULT" />

when you hit the "home" button you should have two options; the Android launcher, and the one you've programmed as a replacement. i believe there, you can choose the default. you can change the default by clearing the settings under settings/apps/manage apps/launcher/clear defaults.

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