WP8后台代理-代码在代理外部执行良好,在代理内部失败
本文关键字:代理 内部 失败 外部 后台 代码 WP8 执行 | 更新日期: 2023-09-27 18:09:54
我创建了一个后台代理来更新我的活动磁贴。代理调度和执行得很好,但是代理执行的代码成了问题——它只是无法完全执行,没有提供任何错误。据我所知,我没有使用任何受限的api,除非Cimbalino工具包在某种程度上提供了一个问题,即使我使用的是NuGet的特定于后台代理的版本。
代码似乎停止执行时,RenderText()和RenderTextWide()失败运行。没有提供错误。同样的代码在前台应用程序中运行时效果非常好。
using System;
using System.Windows;
using Microsoft.Phone.Scheduler;
using Microsoft.Phone.Shell;
using Microsoft.Phone.Info;
using Cimbalino.Phone.Toolkit;
using System.Linq;
using System.Windows.Media.Imaging;
using System.Windows.Media;
using System.Windows.Controls;
using System.IO.IsolatedStorage;
using Cimbalino.Phone.Toolkit.Extensions;
namespace ScheduledTaskAgent1
{
public class ScheduledAgent : ScheduledTaskAgent
{
private static volatile bool _classInitialized;
public ScheduledAgent()
{
if (!_classInitialized)
{
_classInitialized = true;
// Subscribe to the managed exception handler
Deployment.Current.Dispatcher.BeginInvoke(delegate
{
Application.Current.UnhandledException += ScheduledAgent_UnhandledException;
});
}
}
/// Code to execute on Unhandled Exceptions
private void ScheduledAgent_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
if (System.Diagnostics.Debugger.IsAttached)
{
System.Diagnostics.Debugger.Break();
}
}
//Method to create normal tile image
private static void RenderText(string currproperty)
{
WriteableBitmap b = new WriteableBitmap(336, 336);
var canvas = new Grid();
canvas.Width = b.PixelWidth;
canvas.Height = b.PixelHeight;
var background = new Canvas();
background.Height = b.PixelHeight;
background.Width = b.PixelWidth;
SolidColorBrush backColor = new SolidColorBrush(Colors.Transparent);
background.Background = backColor;
TextBlock currtemp = new TextBlock();
currtemp.FontSize = 100;
currtemp.FontFamily = new FontFamily("Segoe UI Light");
currtemp.FontWeight = FontWeights.Bold;
currtemp.Foreground = new SolidColorBrush(Colors.White);
currtemp.Text = currproperty;
currtemp.Margin = new Thickness(20, 10, 0, 0);
currtemp.Width = b.PixelWidth - currtemp.Margin.Left * 2;
canvas.Children.Add(currtemp);
b.Render(background, null);
b.Render(canvas, null);
b.Invalidate();
using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication())
{
using (IsolatedStorageFileStream imageStream = new IsolatedStorageFileStream("/Shared/ShellContent/BackBackgroundImage2.png", System.IO.FileMode.Create, isf))
{
b.SavePng(imageStream);
}
}
}
//Method to create wide tile image
private static void RenderTextWide(string currproperty)
{
WriteableBitmap b = new WriteableBitmap(691, 336);
var canvas = new Grid();
canvas.Width = b.PixelWidth;
canvas.Height = b.PixelHeight;
var background = new Canvas();
background.Height = b.PixelHeight;
background.Width = b.PixelWidth;
//Created background color as Accent color
SolidColorBrush backColor = new SolidColorBrush(Colors.Transparent);
background.Background = backColor;
TextBlock currtemp = new TextBlock();
currtemp.FontSize = 100;
currtemp.FontFamily = new FontFamily("Segoe UI Light");
currtemp.FontWeight = FontWeights.Bold;
currtemp.Foreground = new SolidColorBrush(Colors.White);
currtemp.Text = currproperty;
currtemp.Margin = new Thickness(20, 10, 0, 0);
currtemp.Width = b.PixelWidth - currtemp.Margin.Left * 2;
canvas.Children.Add(currtemp);
using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication())
{
using (IsolatedStorageFileStream imageStream = new IsolatedStorageFileStream("/Shared/ShellContent/WideBackBackgroundImage2.png", System.IO.FileMode.Create, isf))
{
b.SavePng(imageStream);
}
}
}
//When task invokes, run the tile update code.
protected override void OnInvoke(ScheduledTask task)
{
ShellTile tile = ShellTile.ActiveTiles.FirstOrDefault();
if (tile != null)
{
FlipTileData flipTile = new FlipTileData();
flipTile.Title = "";
flipTile.BackTitle = "Atmosphere";
RenderText("Test");
RenderTextWide("Test");
flipTile.BackBackgroundImage = new Uri("/Assets/NewUI/1.PNG", UriKind.Relative); //Default image for Background Image Medium Tile 336x336 px
flipTile.BackgroundImage = new Uri(@"isostore:/Shared/ShellContent/BackBackgroundImage2.png", UriKind.Absolute); //Generated image for Back Background 336x336
flipTile.WideBackBackgroundImage = new Uri("/Assets/NewUI/2.PNG", UriKind.Relative); ////Default image for Background Image Wide Tile 691x336 px
flipTile.WideBackgroundImage = new Uri(@"isostore:/Shared/ShellContent/WideBackBackgroundImage2.png", UriKind.Absolute);
tile.Update(flipTile);
//Tile updated, tell agent operation complete
NotifyComplete();
}
}
}
}
我刚刚在附带调试器的后台代理中运行了您共享的代码,问题非常明显—它抛出了一个异常!确切地说,是无效的跨线程访问异常。所有与UI相关的工作都必须发生在UI线程中,实例化控件和WriteableBitmaps就是这样的工作。
<<p> 解决方案/strong>您需要在适当的线程中使用Deployment.Current.Dispatcher.BeginInvoke
调用RenderText
和RenderTextWide
。你也可以在UI线程中调用OnInvoke
中的所有内容。
注意: Deployment.Current.Dispatcher.BeginInvoke
异步调用给定的操作,所以如果你不在UI线程上运行所有内容,你可能需要做一些事情来同步不同的线程。
NotifyComplete
你必须总是在你完成所有的工作后调用NotifyComplete
。基本上你需要做的是try-catch(全部),然后调用NotifyComplete
。此外,您可能希望将其放在ScheduledAgent_UnhandledException
中,以防万一。
NotifyComplete
不应该像你的代码一样出现在if
中,尽管这种情况在Windows Phone中总是成立的。ShellTile.ActiveTiles
总是至少有一个平铺-主平铺-即使它没有固定。
调试后台代理
是的,你可以那样做。如果代理不工作,查看问题所在的最佳方法是启动带有调试器的应用程序,强制执行后台代理调用,并在要检查的代码中放置一个断点。使用ScheduledActionService.LaunchForTest
比正常情况更早地启动后台代理。
我可以问一下你想用private static volatile bool _classInitialized
字段实现什么吗?为什么是volatile
?
从WP8.0升级到WP8.1 Silverlight后,我的应用程序也出现了这个问题。我的计划代理在代码中的任意点(生成活动磁贴)绝对无声地"崩溃"。经常发生崩溃或挂起,并且不会抛出异常。我已经断断续续地做了一个多月了,但没有成功。我一直很偏激地认为是我自己造成了问题。我昨晚确实找到了一个参考书也许能解决问题。我还没有在我的应用程序中完全测试它。
在WP8.1 Silverlight API变更说明中,有一个非常神秘的段落说:
管理的Windows Phone 8 ScheduledTaskAgent能够访问Silverlight 8.1的特性,它运行在现代的执行堆栈上与Windows融合。这使用了不同的CPU配额机制比Windows Phone 8要好。在某些情况下,Silverlight 8.1背景代理可能会发现它获得的CPU时间比以前少。如果在这种情况下,应用程序可能会选择调用RequestAccessAsync()。这将增加分配给代理的CPU配额。
我在其他地方发现了一些帖子,表明以下代码在添加后台代理任务之前立即放置时修复了一些问题:
await Windows.ApplicationModel.Background.BackgroundExecutionManager.RequestAccessAsync();
我很乐意听到其他人是否也看到了这些类型的问题,如果这有助于他们。
SOLVED!
我也有同样的问题,我用下面的代码解决了:
Deployment.Current.Dispatcher.BeginInvoke(delegate() {RenderText("Test");});Deployment.Current.Dispatcher.BeginInvoke(delegate() {RenderTextWide("Test");});
文件ScheduledAgent.cs:
protected override void OnInvoke(ScheduledTask task)
{
ShellTile tile = ShellTile.ActiveTiles.FirstOrDefault();
if (tile != null)
{
FlipTileData flipTile = new FlipTileData();
flipTile.Title = "";
flipTile.BackTitle = "Atmosphere";
Deployment.Current.Dispatcher.BeginInvoke(delegate() { RenderText("Test"); });
Deployment.Current.Dispatcher.BeginInvoke(delegate() { RenderTextWide("Test"); });
flipTile.BackBackgroundImage = new Uri("/Assets/NewUI/1.PNG", UriKind.Relative); //Default image for Background Image Medium Tile 336x336 px
flipTile.BackgroundImage = new Uri(@"isostore:/Shared/ShellContent/BackBackgroundImage2.png", UriKind.Absolute); //Generated image for Back Background 336x336
flipTile.WideBackBackgroundImage = new Uri("/Assets/NewUI/2.PNG", UriKind.Relative); ////Default image for Background Image Wide Tile 691x336 px
flipTile.WideBackgroundImage = new Uri(@"isostore:/Shared/ShellContent/WideBackBackgroundImage2.png", UriKind.Absolute);
tile.Update(flipTile);
//Tile updated, tell agent operation complete
NotifyComplete();
}
}