在 Android 中执行操作而不打开应用程序

发布于 2024-10-31 01:45:14 字数 162 浏览 1 评论 0原文

我在 Android 中有一个应用程序,它的 MAIN 活动中有一个执行操作的按钮。

有没有办法在不打开应用程序的情况下执行该操作?

我不知道是否可以说它就像一个小部件,因为它不等待更新。

用户应该能够只需单击应用程序的图标而无需打开即可执行该操作。 是否可以?

I have an application in Android that has a button in the MAIN activity that performs an action.

Is there a way to execute that action without opening the application?

I don't know if I can say it is like a widget, because it does not wait for updates.

The user should be able to execute that action just clicking on the icon of the application without opening.
Is it possible?

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

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

发布评论

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

评论(2

叫思念不要吵 2024-11-07 01:45:14

是和不是。对于类似的问题,我必须做的是在我的主要活动中拥有透明的视图,然后自行终止:

在您的活动中...

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
            // Do whatever you need here...
    finish();
}

以及 AndroidManifest.xml 中:

        <activity android:name=".whatever" android:theme="@android:
style/Theme.NoDisplay">

希望这会有所帮助,

Phil Lello

Yes and no. What I had to do for a similar problem was have a transparent view in my main activity, and then self-terminate:

In your activity...

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
            // Do whatever you need here...
    finish();
}

And in AndroidManifest.xml:

        <activity android:name=".whatever" android:theme="@android:
style/Theme.NoDisplay">

Hope this helps,

Phil Lello

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