Two buttons with PendingIntents - Widget(两个带有 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 的按钮 - 小部件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:两个带有 PendingIntents 的按钮 - 小部件


基础教程推荐
- AdMob 广告未在模拟器中显示 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- iOS4 创建后台定时器 2022-01-01