gpt4 book ai didi

android - 如何从 Android 中的小部件打开应用程序?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:35:28 26 4
gpt4 key购买 nike

当我们当时点击小部件时,我需要打开一个 Activity 屏幕(或应用程序)。如何做到这一点?

最佳答案

您需要在您的小部件上设置一个 onClickpendingIntent

Intent intent = new Intent(context, ExampleActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
// Get the layout for the App Widget and attach an on-click listener to the button
RemoteViews views = new RemoteViews(context.getPackageName(),R.layout.appwidget_provider_layout);
views.setOnClickPendingIntent(R.id.button, pendingIntent);

检查一下

Processing more than one button click at Android Widget

关于android - 如何从 Android 中的小部件打开应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3589741/

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