两个带有 PendingIntents 的按钮 - 小部件

Two buttons with PendingIntents - Widget(两个带有 PendingIntents 的按钮 - 小部件)
本文介绍了两个带有 PendingIntents 的按钮 - 小部件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在创建一个带有两个按钮的小部件.其中一个更新小部件的内容,第二个必须启动一个活动.

I'm creating a widget with two buttons. One of them updates the content of the widget and the second one must launch an activity.

每个操作我都有两个 PendingIntent,但我不能让它们都工作.如果一个有效,另一个无效.

I have two PendingIntent for each action, but I can't make them both work. If one works the other one doesn't.

我已经修改了代码,不明白哪里出了问题.

I've revised the code and can't understand what's wrong.

任何帮助将不胜感激.

这是代码.

    RemoteViews controls = new RemoteViews(context.getPackageName(), R.layout.miwidget);

    Intent intent = new Intent("actony.com.ACTUALIZAR_WIDGET");
    intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, widgetId);


    Intent intentSettings = new Intent();  
    intentSettings.setClass(context,WidgetConfig.class);  


    PendingIntent pendingIntentUpdate = PendingIntent.getBroadcast(context, widgetId, intent, PendingIntent.FLAG_UPDATE_CURRENT);
    controls.setOnClickPendingIntent(R.id.BtnActualizar, pendingIntentUpdate);

    PendingIntent pendingIntentSettings =  PendingIntent.getActivity(context, 0, intentSettings, 0);
    controls.setOnClickPendingIntent(R.id.botonSettings, pendingIntentSettings);

推荐答案

当一个小部件中有两个或多个按钮时,请查看此链接以了解单击了哪个按钮..

Check this link to know which button has been clicked when there is two or more button in a widget..

https://stackoverflow.com/a/10733049/1331593

它应该可以工作...如果它不工作,请告诉我是什么问题...

It should work... IF it does not work please let me know what is the problem...

这篇关于两个带有 PendingIntents 的按钮 - 小部件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)