问题描述
|
我正在尝试获取主屏幕小部件来触发新小部件的config类,但是遇到了问题。
当用户首次尝试将我的小部件添加到主屏幕时,它会启动一个线程,该线程下载带有传感器列表的文件,然后退出。下载完成后,下载任务将触发通知。当用户点击通知时,它应该启动dataWidgetConfig活动。使用此代码到一定程度
mnotificationmanager = (notificationmanager)getSystemService(NOTIFICATION_SERVICE);
final Notification notifyDetails = new Notification(R.drawable.icon,\"Sensor list downloaded.\",System.currentTimeMillis());
CharSequence contentTitle = \"Notification Details...\";
CharSequence contentText = \"Sensor list has downloaded,tap to add widget.\";
Intent notifyIntent = new Intent(self,dataWidgetConfig.class);
notifyIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
notifyIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID,appWidgetId);
PendingIntent pendingIntent = PendingIntent.getActivity(self,appWidgetId,notifyIntent,0);
notifyDetails.setLatestEventInfo(self,contentTitle,contentText,pendingIntent);
mnotificationmanager.notify(SIMPLE_NOTFICATION_ID,notifyDetails);
我的问题是,我没有appWidgetId。通过在主屏幕上长按添加小部件时,我获得了一个appWidgetId的分配,如何向主屏幕请求一个小部件?我猜我不能只是弥补一个,因为它可能已经在使用中或以后被分配。
目前,我的活动启动正常,但由于我将appWidgetId故意设置为而退出:
AppWidgetManager.INVALID_APPWIDGET_ID;
有人可以给我任何想法吗?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)