The code samples posted on this blog, and zip file downloads, are licensed under a Creative Commons Attribution 3.0 Unported License. Any work that includes code taken from this blog must provide attribution by means of a link. It is suggested that commercial applications that make use of code from this blog include a reference to the relevant blog post in their 'about' page.
This blog post looks at the new concept of ‘transitions’ that WinRT, within Windows 8, introduces. This concept makes it very easy for you to create a fluid and interactive UI without going anywhere near storyboards!
I have to admit it, I am a big fan of the Metro Design Language; the clean chrome-free graphics, combined with typography inspired by signage and designed for maximum legibility, has given Windows Phone 7 an instantly recognisable style. However, whilst Silvelight applications developed for Windows Phone 7 look like the native metro phone apps, they do not move like them. Motion is an important part of metro, with one of the tenants being that it is “Alive In Motion”. This lead me to publish a multi-part blog series, called Metro In Motion, which provided implementations of the various native animations and transitions (1, 2, 3, 4, 5, 6 & 7).
Windows 8 again is built using the Metro Design Language, and again the tools make it easy for you to create an application which has the Metro look. However, where Windows 8 differs from Windows Phone 7 is that developer APIs make it very easy for you to create applications that move like a Metro application. WinRT introduces a new XAML concept, transitions, which is the focus of this blog post.
I have a (very shaky) video of the demo code included with this blog post below:
With WinRT UIElement, the base class for any element that is added to the visual tree (UI), has a Transitions property. You can use this to specify a collection of transitions for an individual element:
Each transitions is an animation that the WinRT framework plays in response to certain ‘events’. We’ll take a look at the various transitions in turn…
EntranceThemeTransition
When elements are added to the UI they appear instantly (as you might expect), however, with the EntranceThemeTransition elements gracefully fade and slide into location. This animation will fire whenever your element is added to the UI, this could be as a result of:
The application first loading, any element with this transitions specified will animate when the application starts.
The element being added programatically or as a result of binding (e.g. within a bound list)
The element being added as a child of another element
Basically, you can rely on this animation being fired whene your element is first visible to the user.
ChildrenTransitions
If you add multiple elements to the UI at the same time, or a UserControl is loaded that contains a number of animated elements, their EntranceThemeTransition animations will fire at the same time. However, if you have a panel that contains a number of elements, you can make them appear in sequence by adding the EntranceThemeTransition to the ChildrenTransitions property of the panel. For example, any element added to the WrapGrid defined below, will animate as it appears:
Here we can see nine rectangles being animated as they slide into location:
The animations are fired in sequence, no matter how the elements are added to the panel. For example, if you add a couple of elements in code-behind, they will appear in sequence.
(As an aside, this is really quite cool, I can imagine how I might implement the animations on individual elements in WPF / Silverlight, however, the child-transitions concept would be vary hard to implement!)
One thing to note is that the framework fires the animations in the order that elements appear in the Panel.Children collection, this is not necissarily the order they appear in the UI. For example, the following example shows elements added in a Grid, where the elements are defined in a random order within XAML:
This doesn’t look quite so good!
RepositionThemeTransition
When you change the positions of an element, either directly or as a result of its parent layout changing, it will move into its new location instantly. By adding a RepositionsThemeTransition, the WinRT framework will animate the element as its moves location.
A few things I have observed:
The RepositionThemeTransition is not fired when you apply a RenderTransform to an element, possibly because transitions are applied via render transforms
The RepositionThemeTransition is not fired when an elements position within a Canvas changes. This is probably because Canvas.Left and Canvas.Top do not have any impact on layout.
This transition, and none of the others discussed in this blog post, work when the elements are hosted within a FlipView (not sure why, this feels like a bug)
Again, if you add a RepositionThemeTransition to the children of a panel via ChildrenTransitions, the animations are fired in sequence. In the below image an element has been removed from the top of a WrapGrid:
(Trust me – this looks much better in action! try running the sample code with this blog-post)
One point of interest, you can simplify the XAML for adding ChildrenTransitions when using an ItemsControl (Or ListBox, GridView or other subclasses) from the following:
This property specifies a collection of transitions that will be set on the item-container.
AddDeleteThemeTransition
This transitions is intended for use with panels, it animates the process of adding / removing elements. This transitions is added to the ChildrenTransitions (or ItemContainerTransitions) just like the others. As items are added, they fade into place, and as they are removed they slide out and the other elements reposition themselves. One thing that is really cool about this transitions is that it ‘understand’ the layout of the panel.
Here you can see elements being repositioned within a WrapGrid when the first element is being removed. You can see that the elements are moved in batches based on their row / column:
Very cool!
ContentThemeTransition
The final transition I want to look at is the ContentThemeTransition. For those of you who have worked with Silverlight or WP7, this provides the same functionality as the popular TransitioningContentControl from the Slverlight toolkit – now this feature is delivered by the framework itself (at last!)
To enable this, add a ContentThemeTransition to the ContentTransitions property (note, not, the Transitions property!).
Whenever the content of this control is changed, either by setting the Content property directly, or as a result on the databound content changing, the new content gracefully slides into place.
Conclusions
Whilst WinRT borrows much from Silverlight and WPF, it brings some great new controls and features and transitions are probably one of my favourite new features. They really help you create fluid applications with minimum effort.
I have covered all the theme-transitions except one, ReorderThemeTransition, I have not yet found out how to use this transition, I think this might be because of a lack of sorting / filtering of collections in WinRT. This is probably functionality that will be added at a later date.
This article show the step-by-step development of a Windows Phone 7 HTML5 application using PhoneGap. It also looks at how viable this approach is for cross-platform mobile development.
Windows Phone 7 allows native application development in both Silverlight and XNA, both of which are mature framework with excellent tool support. So why would you want to develop an application with HTML5 / JavaScript instead? Personally I think the only viable reason for doing this (other than just for fun!) is to develop a cross-platform mobile application. HTML5 / JavaScript applications are platform agnostics, running on Android, iPhone, BlackBerry and now with the Mango WP7 supporting IE9, WP7.
In this blog post I will describe how I implemented the application shown below, which allows you to search properties for sale, using the GPS and various webservices to find and geocode your current location:
The basic concept behind HTML5 applications is that your native application is simply a full-screen WebBrowser, which hosts your JavaScript application logic. In order to achieve this in practice, you need to package the HTML, JavaScript, CSS and other resources into a XAP file, then use the WebBrowser APIs to pass messages between your JavaScript code and the native APIs in order to access the phone features such as the camera, accelerometer etc …
A few people have developed frameworks to assist in development of HTML5 apps, for example the HTML App Host Framework. However, the one I would recommend is PhoneGap, as the name implies, this framework fills the gap between your JavaScript code and the native phone features. PhoneGap is an open source project that has been running for a couple of years now; currently a large range of phones are supported, meaning that you are guaranteed the same JavaScript APIs for accessing the phone features on Android, iPhone, BlackBerry and more.
PhoneGap has a project template which will help you create an initial “Hello World” style application. You can get started by following these steps:
Download the WP7 PhoneGap from https://github.com/phonegap/phonegap-wp7
Copy the file GapAppStarter.zip, which contains the project template, to the folder
\My Documents\Visual Studio 2010\Templates\ProjectTemplates\
Create a new project using the GappAppStart project template. I could not locate this template within the tree of ‘Installed Templates’, so used the search function. See the image below.
Add the framework\WP7GapClassLib.csproj project to your solution and add a reference to this project.
Build and run!
If you followed these steps correctly, you should see the following:
Dissecting the Example App
The example application is a bit more complex than an equivalent Silverlight ‘Hello World’ app, so we’ll look at it in some detail …
The www folder contains the HTML5 application sourcecode, here you place images, HTML, JavaScript, and CSS. These files are marked as ‘content’ and will be included within the XAP file with the same directory structure. The project contains a GapSourceDictionary.xml file, this XML file lists all the HTML application resources. When the application starts, this XML file is read, and each file is added to isolated storage so that it can be served by the WebBrowser control:
PGView is defined in the WP7GapClassLib, it is a UserControl which hosts a WebBrowser, and contains the code that bridges between the PhoneGap JavaScript APIs and the WP7 .NET APIs. On startup it will load your files into isolated storage and navigate the browser control to “www/index.html” (although this will probably be configurable in future).
The index.html file from the template project is shown below (minus a few un-important parts):
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=320; user-scalable=no" />
<script type="text/javascript" charset="utf-8" src="phonegap.1.0.js"></script>
<script type="text/javascript">
function init()
{
document.addEventListener("deviceready",onDeviceReady,false);
}
// once the device ready event fires, you can safely do your thing! -jm
function onDeviceReady()
{
document.getElementById("welcomeMsg").innerHTML += "PhoneGap is ready!";
}
</script>
</head>
<body onLoad="init();">
<h1>Hello PhoneGap</h1>
<div id="welcomeMsg"></div>
</body>
</html>
The important parts to note here are, firstly the viewport metadata, which relates to the complications that small mobile screens present to layout, resulting in the need for a separate layout viewport and visual viewport, as described in the article “a tale of two viewports“. Here the width is set to 320px, so each pixel-width in our HTML is two pixels on screen. I prefer one-to-one correlation, so would change this to the physical phone dimensions. The “user-scalable=no” should prevent the user from being able to pinch-zoom the page, unfortunately on my (mango) phone, this doesn’t seem to be working. This is a shame, because it really spoils the illusion of this being an application rather than a web-page.
When the DOM is loaded, the init function is invoked, which adds a handler for the deviceready event. When this has been fired, it is safe to use the PhoneGap APIs. This example does not actually use any of the APIs, but you can make a simple change to get the phone name via device.name for example to verify that PhoneGap really is working.
So how does the JavaScript / Silverlight bridge work? The PhoneGap.js file communicates via window.external.Notify, which raises the ScriptNotify event within the WebBrowser control. Encoded strings are sent to the PGView control which uses the command pattern to identify the class which performs the required function, and executes it.
Creating the Property Search Application
Following the principles of Unobtrusive JavaScript, where presentation is separated from logic, the I have moved application logic into a file propertySearch.js (adding this to GapSourceDictionary.xml of course). The HTML has the following markup, a simple form that can be used to input the string to search for:
<h1id="welcomeMsg">Find A Home</h1><formid="form"action="#"><inputtype="text"id="searchText"/><inputtype="submit"id="searchButton"value="Go"/><inputtype="button"id="getLocationButton"value="My Location"/></form>
The event handlers are wired up as follows:
$(document).ready(function(){
document.addEventListener("deviceready", onDeviceReady,false);});// phonegap is initialisedfunction onDeviceReady(){// verify that the phone is ready!
$("#welcomeMsg").append("...");
$("#form").submit(searchProperties);
$("#getLocationButton").click(getGeolocation);}
Note, I have also added jQuery to the project. The code which appends an ellipsis (…) to the title is a subtle indication that the deviceready event has fired. I found when using the emulator that often the JavaScript code within the page was not being executed at all, this seems to have nothing to do with the PhoneGap JavaScript code. Fortunately the code is always executed when deployed to a real device.
The search properties function is a simple AJAX call to the Nestoria APIs, using the jQuery ajax() function, which manages the JSONP process of dynamically adding a script tag to the DOM which fetches the required data.
var propertyTemplate = $("#propertyTemplate").template();// searches for properties based on the current search textfunction searchProperties(){var query ="http://api.nestoria.co.uk/api?"+"country=uk&pretty=1&action=search_listings&encoding=json&listing_type=buy"+"&place_name="+ $("#searchText").val();
$.ajax({
dataType:"jsonp",
url: query,
success:function(result){var resultsContainer = $("#resultsContainer");
resultsContainer.empty();
$.each(result.response.listings,function(index, property){var $itemNode = $.tmpl(propertyTemplate, property).data("propertyData", property);
$itemNode.appendTo(resultsContainer);});}});returnfalse;}
NOTE: The application uses the Nestoria UK APIs, so if you are trying it out in your emulator, set your location to somewhere in the UK!
I am using a jQuery templates to render each item. You can render an array of items via the tmpl() function, however, here I render each one individually, so that I can associate the raw JSON data for each property with the generated element via the jQuery data() function. This is rather like defining the DataContext for a Silverlight FrameworkElement.
When a property is clicked, the following function is invoked, which locates the clicked DOM element, then extract the JSON property details via the data() function described above. This is used in conjunction with another template to render the property details:
// handle clicks on propertiesfunction propertyClick(propertyNode){// get the propertyvar property = $(propertyNode).data("propertyData");// render the template
$("#detailsContainer").empty();
$.tmpl(propertyDetailsTemplate, property).appendTo("#detailsContainer");// switch pages
showDetailsPage();}
It is worth noting that if the IE9 browser supported CSS3 transitions all of the above could have been done declaratively within CSS, unfortunately animations are not in the list of supported features. There is nothing wrong with jQuery animations, they have a very concise and simple syntax. However, CSS3 animation give the browser the option to use GPU acceleration, greatly improving performance. The webkit browsers on Android and iOS support this feature (using the –webkit prefix on the required CSS properties).
// gets the current phone locationfunction getGeolocation(){
navigator.geolocation.getCurrentPosition(function(position){// geocode via Bing Mapsvar apiKey ="Ai9-KNy6Al-r_ueyLuLXFYB_GlPl-c-_iYtu16byW86qBx9uGbsdJpwvrP4ZUdgD";var query ="http://dev.virtualearth.net/REST/v1/Locations/"+ position.coords.latitude+","+ position.coords.longitude+"?jsonp=onGeocode&key="+ apiKey
$.ajax({
dataType:"jsonp",
url: query
});});}// handle the geocode resultsfunction onGeocode(result){// extract the 'outward' part of the postcodevar postalCode = result.resourceSets[0].resources[0].address.postalCode;var codeSplit = postalCode.split(" ");if(codeSplit.length>0){
$("#searchText").val(codeSplit[0]);}}
Metro-style
The standard style for HTML controls doesn’t look that great, however, with a simple bit of CSS it is possible to re-create something similar to the WP7 Metro styles. Here I have copied some of the properties that are present in the Silverlight resource dictionaries:
.progress div
{width:5px;height:5px;overflow:hidden;position:absolute;background:green;}.progress{position:relative;height:10px;}
And some further jQuery animations, this time making use of the easing plugin:
function onDeviceReady(){
...
// create an animation loop for the progress bar;
startAnimation();var tid = setInterval(startAnimation,3500);}function startAnimation(){var delay =200;
$(".pip").each(function(){
animatePip($(this), delay);
delay +=200;});}function animatePip(element, delay){
element.css("left",0)
.hide()
.delay(delay)
.show()
.animate({ left:240},{ duration:1000, easing:"easeOutSine"})
.animate({ left:480},{ duration:1000, easing:"easeInSine"});}
We get something which approximates the WP7 progress bar:
(Note, sometimes the animation goes a bit crazy, try refreshing your browser to reset it!)
Again, my comments regarding CSS3 animations and GPU acceleration apply here also.
Tombstoning
As I have discussed in a previous blog post, tombstoning is a tricky task for WP7 developers. When your application is tombstoned you can save application state, page state – and the framework stores your back-stack URIs. It is your responsibility to re-start your application in the same state. Contrary to the belief of some developers I have talked to, Mango does not remove the need to tombstone, it just means that your application is likely to be tombstoned less often, with the suspended state being used to park your application while application switching.
So, how does tombstoning work with a PhoneGap HTML5 application? Good question! Implanting tombstoning would probably require some custom communication, outside of the PhoneGap APIs, that allows the JavaScript application to provide its current state to the Silverlight application that hosts this.
I would be very interested to hear from anyone who has solved this issue!
The Development Process
Attempting to develop JavaScript applications with the browser within the WP7 emulator is not a pleasant process. Any JavaScript errors, including simple parsing errors, typically result in the HTML being rendered but the scripts ignored. A much better approach is to run your HTML / JavaScript within a browser, this gives you access to the usual developer tools such as Firebug, or the built in Chrome / IE tools.
However, to do this, you need to mock the PhoneGap APIs. For my application, I found the following did the trick:
OK, I know what you are thinking, what about the geolocation code? Where is the mock for these PhoneGap APIs? The answer is that a number of the PhoneGap APIs are designed to exactly match the corresponding HTML5 specification. So for example, the PhoneGap geolocation API is exactly the same as the HTML5 geolocation APIs. For phones such as WP7 where the browser supports this HTML5 feature, PhoneGap does nothing, for phones that do not, PhoneGap provides an implementation (using the native APIs).
If the PhoneGap mock is so simple, you might be wondering, why use PhoneGap at all? Well, PhoenGap is still giving us a mechanism for packaging files into a XAP file in such a way that they can be rendered by the browser.
How cross-platform is this approach?
I would say that this approach is probably about as cross-platform as any HTML5 / JavaScript browser based application. There are always going to be cross-browser differences to overcome. As a test, I ran this code on an iPod Touch without any modification. The results are pretty good, although there are some quirks visible:
How viable are HTML5 applications?
It is clear that there is a growing trend towards cross-platform HTML5 applications, and Microsoft seem to be in support of this concept (even though the JavaScript / HTML5 Metro applications within Win8 are not cross-platform!). Microsoft has worked with Nitobi to create the PhoneGap for WP7, it was also announced at the //build/ conference that Microsoft would be working with jQuery Mobile to create a Metro theme for their mobile controls.
Currently, PhoneGap for WP7 is in beta, and it is certainly a little rough around the edges. This will no doubt improve in time. The large list of applications written with PhoneGap, certainly indicate that this is a viable solution for application development.
A larger obstacle for WP7 HTML5 applications is the IE9 browser that runs in the Mango phone. Whilst it has a pretty impressive list of HTML5 features supported, there are a couple of browser features / issues that I cannot resolve. These make it obvious to any user that this is in fact a browser application, totally spoiling the ‘illusion’
user-scalable=no – currently this setting seems to be ignored. This means that the user can pinch your application, which makes it feel like a web page. UPDATE Roy, in a comment below pointed out that the viewport parameters should be comma-separated. This almost solves the issue. The user can still pinch the view, which causes it to zoom, but when the pinch finishes, the viewport returns to the original scale. Not perfect, but better than nothing!
There doesn’t seem to be any way to turn of the gray shaded rectangle that appears over links when you click them. With applications that have dynamic content, this can look pretty ridiculous, with a gray rectangle lingering on screen while the page content changes underneath it. With the Android / iPhone browsers this can be turned off in CSS via -webkit-tap-highlight-color
Hopefully these limitations will be resolved. When they do, I am quite sure that HTML5 will be a viable technology for creating quality phone applications.
I have just published a new article on codeproject which describes the development of XAMLFinance, a cross-platform application for the desktop (WPF), web (Silverlight) and phone (WP7).
Head over to codeproject to read about the development of this application and download the sourcecode.
This blog post describes how to implement a conversation / messaging style application with Windows Phone 7. It covers how to style the speech bubbles and the scrolling of the conversation list view when the phone keyboard is shown.
A couple of weeks ago I wrote a blog post which described the creation of a Windows Phone 7 ConversationView, a view which renders a list of messages so that they look like a conversation. In this blog post I am going to extend the concept further, by adding an input text field allowing you to have a conversation with ELIZA, an A.I. chatterbot. This blog post will look at some of the tricky issue regarding scrolling the list of messages so that the most recent is always visible when responding.
You can see a video of this code in action below:
I hoped that I could find a decent C# ELIZA (a classic chatter application that takes on the role of a therapist) implementation on the internet, however, the only one I found was rather basic. If you know of any alternatives, pleas let me know!
In my previous blog post I created a UserControl which renders each Message instance, where the template used to render the message is dependant on which side of the conversation it relates to. Refer to my previous blog post for implementation details.
The layout for my simple chat application uses an instance of the ConversationView user control, with a text input located at the bottom of the screen:
<Gridx:Name="ContentPanel"Grid.Row="1"Margin="12,0,12,0"><GridcontribControls:GridUtils.RowDefinitions=",Auto"><ScrollViewerx:Name="ConversationScrollViewer"><!-- conversation view --><local:ConversationViewx:Name="conversationView"/></StackPanel></ScrollViewer><!-- the text input field --><GridGrid.Row="1"contribControls:GridUtils.RowDefinitions=",,"Margin="0,10,0,0"><RectangleFill="White"Grid.RowSpan="2"/><txt:WatermarkedTextBoxWatermark="type a message"TextWrapping="Wrap"AcceptsReturn="True"Padding="0"x:Name="TextInput"GotFocus="TextInput_GotFocus"LostFocus="TextInput_LostFocus"/><PathData="m 0,0 l 16,0 l 0,16 l -16,-16"Fill="White"Margin="0,0,5,0"HorizontalAlignment="Right"Grid.Row="2"/></Grid></Grid></Grid>
Note the simplified Grid markup from the WP7Contrib codeplex project, where the string ",Auto" is used in place of the more verbose RowDefinition XAML elements.
The WatermarkedTextBox is from an article by WindowsPhoneGeek (and it works like a charm – thanks!). A simple Path and Rectangle are added to the layout so that the input field looks like a speech bubble.
When the user clicks on the input TextBlock the phone keyboard will be revealed, allowing them to enter their message. This is where we stumble upon our first major problem!
When the phone keyboard is displayed, your application content is ‘pushed’ upwards to make space for the keyboard. Unfortunately, this results in the message which the user is replying to being pushed off the top of the screen …
Because our ConversationView sits within a ScrollViewer we can scroll to push the message further down the screen, however, this would require a negative scroll offset, which isn’t possible!
To circumnavigate this issue, we can add an element which is used to ‘push’ the top message downwards so that it is located at the bottom of the ScrollViewer. The following markup adds a Rectangle which sits above the ConversationView, with two Storyboards that expand / collapse the Rectangle allowing us to push the messages down when we need them:
<ScrollViewerx:Name="ConversationScrollViewer"><StackPanelOrientation="Vertical"x:Name="ConversationContentContainer"VerticalAlignment="Top"><!-- padding element --><RectangleWidth="100"Height="0"x:Name="PaddingRectangle"><Rectangle.Resources><Storyboardx:Name="PaddingRectangleShowAnim"><DoubleAnimationStoryboard.TargetName="PaddingRectangle"Storyboard.TargetProperty="(Height)"To="400"Duration="00:00:00.3"/></Storyboard><Storyboardx:Name="PaddingRectangleHideAnim"><DoubleAnimationStoryboard.TargetName="PaddingRectangle"Storyboard.TargetProperty="(Height)"To="0"Duration="00:00:00.3"/></Storyboard></Rectangle.Resources></Rectangle><!-- conversation view --><local:ConversationViewx:Name="conversationView"/></StackPanel></ScrollViewer>
We can detect when the input TextBlock receives focus to determine when the keyboard will be revealed. Using the Show / Hide extension methods I blogged about a while back, we can fire the animations which make this padding rectangle grow or shrink when the keyboard is shown or hidden:
If we fill the rectangle so that it is visible, you can see how it pushes down the content as shown below:
The next step is to ensure that the ConversationView is always scrolled so that the most recent message is visible. The ScrollViewer has a ScrollToVerticalOffset method which can be used to programmatically scroll the content, however, because this is not a dependency property it cannot be animated via Storyboard.
Here I am using the same trick I employed for the Windows Phone 7 Jump List control, where a private dependency property that sets the scroll offset value in its change handler is used as a target for the scrolling Storyboard:
/// <summary>/// VerticalOffset, a private DP used to animate the scrollviewer/// </summary>private DependencyProperty VerticalOffsetProperty = DependencyProperty.Register("VerticalOffset",
typeof(double), typeof(MainPage), new PropertyMetadata(0.0, OnVerticalOffsetChanged));privatestaticvoid OnVerticalOffsetChanged(DependencyObject d, DependencyPropertyChangedEventArgs e){
MainPage app = d as MainPage;
app.OnVerticalOffsetChanged(e);}privatevoid OnVerticalOffsetChanged(DependencyPropertyChangedEventArgs e){
ConversationScrollViewer.ScrollToVerticalOffset((double)e.NewValue);}
Using this dependency property we can create a simple Storyboard and DoubleAnimation that scrolls to reveal the latest message:
privatevoid ScrollConvesationToEnd(){// start from the current position
scrollViewerScrollToEndAnim.From= ConversationScrollViewer.VerticalOffset;// set the scroll position to the the height of the contained content
scrollViewerScrollToEndAnim.To= ConversationContentContainer.ActualHeight;// go!
scrollViewerStoryboard.Begin();}
And there you have it, a fully functional conversation application. Enjoy!