Windows Phone 7 開發 31 日談——第23日:提供試用版應用程式
By Jeff Blankenburg
本文是 “Windows Phone 7 開發 31 日談” 系列的第23日。
昨天,我寫了如何將遊戲新增到電話的遊戲中心中。今天,我會向你展示為應用程式新增試用內容是多麼簡單。例如,假設你建立了一個50關的遊戲。可能你想讓使用者能免費體驗前5關,但要想玩後面的,他們就需要購買這個遊戲。本文就像你展示如何做到。
使用LicenseInformation類
通過向我們的頁面中新增Microsoft.Phone.Marketplace程式集和相應的名稱空間,就可以訪問LicenseInformation類了,它直接與程式的“付費”狀態相關。
- using Microsoft.Phone.Marketplace;
下一步是真正地使用LicenseInformation類,來建立一個例項:
- LicenseInformation li = new LicenseInformation();
最後,LicenseInformation有一個非常棒的返回布林值的方法叫IsTrial(),毫無懸念,它允許我們檢測程式是否處於試用狀態。你可以很方便地將它用於一個if語句,就像這樣:
- if (!li.IsTrial())
- {
- //Do something that only paid users can do.
- }
- else
- {
- //Do something that all users, trial or paid, can do.
- }
測試試用模式
不幸的是,沒有一種用來在試用和已付款狀態間切換的內建機制。不過這處理起來很簡單。我使用了在App.xaml.cs檔案中相同的if語句。用它來檢測你是否在除錯,如果是,建立一個被我叫做“trialMode”的IsolatedStorageSetting。
下面是整個App()方法,包括App.xaml.cs檔案自動生成的程式碼。在下面的例子中,我將trialMode設為了TRUE。當你測試“已付費”模式時要將它關閉。
- IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
- public App()
- {
- // Global handler for uncaught exceptions.
- UnhandledException += Application_UnhandledException;
- settings["trialMode"] = false;
- // Show graphics profiling information while debugging.
- if (System.Diagnostics.Debugger.IsAttached)
- {
- settings["trialMode"] = true;
- // Display the current frame rate counters.
- Application.Current.Host.Settings.EnableFrameRateCounter = true;
- // Show the areas of the app that are being redrawn in each frame.
- //Application.Current.Host.Settings.EnableRedrawRegions = true;
- // Enable non-production analysis visualization mode,
- // which shows areas of a page that are being GPU accelerated with a colored overlay.
- //Application.Current.Host.Settings.EnableCacheVisualization = true;
- }
- // Standard Silverlight initialization
- InitializeComponent();
- // Phone-specific initialization
- InitializePhoneApplication();
- }
回顧一下早先的程式碼,我需要修改if語句來處理這個新的IsolatedStorageSettings值。這次我包含了整個MainPage.xaml.cs檔案,所以結合上下文你可以看到所有的內容。
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Animation;
- using System.Windows.Shapes;
- using Microsoft.Phone.Controls;
- using Microsoft.Phone.Marketplace;
- using System.IO.IsolatedStorage;
- namespace Day23_UsingTrial
- {
- public partial class MainPage : PhoneApplicationPage
- {
- LicenseInformation li = new LicenseInformation();
- IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
- // Constructor
- public MainPage()
- {
- InitializeComponent();
- if (!li.IsTrial()||(bool)settings["trialMode"] == false)
- {
- //Do something that only paid users can do.
- }
- else if (li.IsTrial() || (bool)settings["trialMode"] == true)
- {
- //Do something that all users, trial or paid, can do.
- }
- }
- }
- }
這就是所有你需要做的,當然這並不是“最好的”處理這種問題的方法,但對我來說它的確可以工作。如果誰有什麼好的方法,我很樂意去用。
下載示例程式碼
通過一個可以執行的例子來看以上所有內容,下載這個解決方案並研究它。這始終是學習的一個好方法。
相關文章
- Windows Phone 7 開發 31 日談——第22日:應用?還是 遊戲?Windows遊戲
- Windows Phone 7 開發 31 日談——第11日:加速感應器Windows
- Windows Phone 7 開發 31 日談——第7日:啟動器Windows
- Windows Phone 7 開發 31 日談——第25日:外部APIWindowsAPI
- Windows Phone 7 開發 31 日談——第24日:嵌入字型Windows
- Windows Phone 7 開發 31 日談——第19日:推送通知Windows
- Windows Phone 7 開發 31 日談——第3日:返回鍵Windows
- Windows Phone 7 開發 31 日談——第16日:全景檢視Windows
- Windows Phone 7 開發 31 日談——第13日:位置服務Windows
- Windows Phone 7 開發 31 日談——第8日:選擇器Windows
- Windows Phone 7 開發 31 日談——第4日:裝置方向Windows
- Windows Phone 7 開發 31 日談——第1日:專案模板Windows
- Windows Phone 7 開發 31 日談——第21日:Silverlight Toolkit for Windows PhoneWindows
- Windows Phone 7 開發 31 日談——第18日:WebBrowser控制元件WindowsWeb控制元件
- Windows Phone 7 開發 31 日談——第15日:獨立儲存Windows
- Windows Phone 7 開發 31 日談——第5日:系統主題Windows
- Windows Phone 7 開發 31 日談——第2日:頁面導航Windows
- Windows Phone 7 開發 31 日談——第20日:地圖控制元件Windows地圖控制元件
- Windows Phone 7 開發 31 日談——第17日:樞軸控制元件Windows控制元件
- Windows Phone 7 開發 31 日談——第14日:墓碑機制(多工)Windows
- Windows Phone 7 開發 31 日談——第12日:使手機震動Windows
- Windows Phone 7 開發 31 日談——第26日:與其他開發人員(免費)分享你的程式Windows
- Windows phone 應用開發[9]-單元測試Windows
- Windows phone應用開發[15]-輔助工具Windows
- Windows phone應用開發[18]-下拉重新整理Windows
- Windows phone應用開發[19]-RSA資料加密Windows加密
- Windows phone 應用開發[2]-資料快取Windows快取
- 《Windows Phone 7入門經典之使用Silverlight和XNA開發Windows Phone應用》書評Windows
- Windows Phone 8初學者開發—第10部分:資料繫結應用程式和透視應用程式專案模板簡介...Windows
- Repractise基礎篇:Web應用開發七日談Web
- ·Windows Phone 7首款機型8月25日開賣Windows
- Windows phone應用開發[17]-xap提交異常處理Windows
- ·微軟開啟Windows Phone Mango應用閘門微軟WindowsGo
- 7月6日雲棲精選夜讀:淺談應用效能測試PTS
- 應用程式日誌Sample
- 7款最佳安卓日曆應用安卓
- 淺談桌面應用程式的開發
- BusyCal for Mac(日曆應用程式)Mac