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

2023-09-08移动开发问题
5

本文介绍了两个带有 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 的按钮 - 小部件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

如何在 COCOS2d Android 中使用 CClistview?
How can I use CClistview in COCOS2d Android?(如何在 COCOS2d Android 中使用 CClistview?)...
2024-08-12 移动开发问题
5

cocos2d-android:如何显示分数
cocos2d-android: how to display score(cocos2d-android:如何显示分数)...
2024-08-11 移动开发问题
7

Sqlite 数据库未从资产文件夹 Android 复制
Sqlite database not copied from asset folder Android(Sqlite 数据库未从资产文件夹 Android 复制)...
2024-04-15 移动开发问题
8

SQLite 数据库副本在由设备而不是模拟器生成时出现损坏
SQLite Database Copy Appears Corrupted When Generated by Device and not Emulator(SQLite 数据库副本在由设备而不是模拟器生成时出现损坏)...
2024-04-15 移动开发问题
4

安卓文件拷贝
Android file copy(安卓文件拷贝)...
2024-04-15 移动开发问题
6

Android如何在android中检测Edittext的Copy事件
Android how to detect Copy event of Edittext in android(Android如何在android中检测Edittext的Copy事件)...
2024-04-15 移动开发问题
5