调用LockScreen.SetImageUri()时,Windows Phone 8 Lockscreen不会设置

时间:2013-12-06 23:34:34

标签: c# windows-phone-8 windows-phone lockscreen

首先,我已经在我的应用清单的扩展程序中添加了我的锁屏图像,我的问题源于多次更改。

在应用程序中,我还可以让一个人点击按钮,从互联网上抓取图像,将其保存到存储中,然后将其设置为锁屏。有人第一次按下按钮时,它会(大部分时间)设置正确,但我的问题是当再次按下该按钮时,它通常会选择不设置,因此要求用户必须按下多个按钮希望它正确设置的时间。

这是我的按键代码

    private async void Set_As_Lockscreen_Click(object sender, EventArgs e)
    {
        Debug.WriteLine("Set_As_Lockscreen_Click(): Entering");
        try
        {
            if (!contentLoaded) { return; }
            if (Windows.Phone.System.UserProfile.LockScreenManager.IsProvidedByCurrentApplication)
            {
                Debug.WriteLine("Awaiting Lockscreen_Helper.SetImage()");
                await Lockscreen_Helper.SetImage(new Uri(libraryObject.anime.cover_image, UriKind.Absolute));
            }
        }
        catch (Exception) { Debug.WriteLine("Set_As_Locksceen_Click(): Failed"); }
        Debug.WriteLine("Set_As_Lockscreen_Click(): Exiting");
    }

这是我的Lockscreen Helper Class

public class Lockscreen_Helper
{
    private const string BackgroundRoot = ""; 
    private const string LOCKSCREEN_IMAGE = "lockscreen.jpg";
    private static int count;

    public static bool DeleteLockscreenImage()
    {
        Storage.DeleteFile(LOCKSCREEN_IMAGE);
        return true;
    }

    public static async Task SetImage(Uri uri)
    {
        //First Delete Old image
        DeleteLockscreenImage();

        Debug.WriteLine(uri.OriginalString);

        string fileName = uri.Segments[uri.Segments.Length - 1];
        string imageName = BackgroundRoot + fileName;

        using (IsolatedStorageFile storageFolder = IsolatedStorageFile.GetUserStoreForApplication())
        {
            using (IsolatedStorageFileStream stream = storageFolder.CreateFile(LOCKSCREEN_IMAGE))
            {
                Debug.WriteLine("Opening Client");
                HttpClient client = new HttpClient();

                Debug.WriteLine("Grabbing File");
                byte[] hummingbirdResult = await client.GetByteArrayAsync(uri);
                Storage.isSavingComplete = false;

                Debug.WriteLine("Writing File");

                await stream.WriteAsync(hummingbirdResult, 0, hummingbirdResult.Length);
                Storage.isSavingComplete = true;

                Debug.WriteLine("File Written");
            }
        }

        await SetLockScreen();
    }

    public static async Task SetLockScreen()
    {
        bool hasAccessForLockScreen = LockScreenManager.IsProvidedByCurrentApplication;

        if (!hasAccessForLockScreen)
        {
            var accessRequested = await LockScreenManager.RequestAccessAsync();
            hasAccessForLockScreen = (accessRequested == LockScreenRequestResult.Granted);

            Consts.HasAccessForLockscreen = hasAccessForLockScreen;
        }

        if (hasAccessForLockScreen)
        {
            // Maybe if I try setting it to another image then setting it
            // back to the downloaded image?

            //bool isAppResource = true;
            //string filePathOfTheImage = "Assets/defaultLockscreenBackground.png";
            //var schema = isAppResource ? "ms-appx:///" : "ms-appdata:///Local/";
            //var uri = new Uri(schema + filePathOfTheImage, UriKind.Absolute);
            //LockScreen.SetImageUri(uri);

            // thread.sleep(2.0); // Try having it wait 2 seconds before setting again?

            Uri imgUri = new Uri("ms-appdata:///local/" + LOCKSCREEN_IMAGE, UriKind.Absolute);
            LockScreen.SetImageUri(imgUri);
            Debug.WriteLine("Lockscreen Image Set");
        }
    }
}

这是删除文件的存储代码

    public static bool DeleteFile(string fileName)
    {
        if (!DoesFileExist(fileName))
            return true;

        using (IsolatedStorageFile storageFolder = IsolatedStorageFile.GetUserStoreForApplication())
        {
            storageFolder.DeleteFile(fileName);
            return true;
        }
    }

**此代码只是MSDNChannel-9

代码的略微修改版本

有些注意事项,图像正在删除,下载和保存,我已经通过Isolated Storage Explorer进行了检查。我甚至试图将另一个图像设置为锁屏,在设置之前我的下载图像只是因为文件名的相似之处正在弄乱它。我甚至尝试让它等待2秒再尝试再次设置。两者都不起作用。同时检查我的输出窗口,它正在输入方法。

我已经在这里呆了几天了,现在试图解决这个问题,而这只是我的想法。是否有人可以提供帮助或至少提供一些建议?

谢谢。

1 个答案:

答案 0 :(得分:0)

当我在我的应用程序上实现此功能时,我必须解决以下问题:

  • 在WmAppManiest.xml支持中启用此选项,以便让应用程序成为后台提供程序。

  • 申请应用程序的权限,以便设置为后台提供程序。

  • 设置图像

    • 要使用应用中附带的图片,请使用ms-appx:///

      Uri imageUri = new Uri(“ms-appx:///background1.png”,UriKind.RelativeOrAbsolute); LockScreen.SetImageUri(imageUri);

    • 要使用存储在本地文件夹中的图像,请使用ms-appdata:/// local / shared / shellcontent 必须位于/ shared / shellcontent子文件夹中或以下

      Uri imageUri = new Uri(“ms-appdata:///local/shared/shellcontent/background2.png”,UriKind.RelativeOrAbsolute);

      LockScreen.SetImageUri(imageUri);

基于(模块7)http://rasor.wordpress.com/2012/11/30/wp8-jump-start-course/

另外在我的情况下,我不得不定期从互联网上下载新的后台锁定屏幕。有一次它没有工作,因为操作系统没有重新加载图像,即使文件是使用新下载的图像修改的。解决方法是交替下载文件的名称。因此,它第一次使用: “MS-应用程序数据:///local/shared/shellcontent/background1.png” 该应用第二次使用: “MS-应用程序数据:///local/shared/shellcontent/background2.png” 下次它将使用background1.png重复循环。

香草