Quantcast
Channel: Geekswithblogs.net | asp.ne Posts
Viewing all articles
Browse latest Browse all 56

Android to Windows 8 Part 5: Building a Simple User Interface

$
0
0

Over the past several weeks I've been working on some content I'm excited to finally share with you through a series of blog posts. This series will introduce you to Windows 8 development from an Android developer's perspective. Through the course of the series you'll create your first app. It won't be anything pretty, but you'll learn the ins and outs of the development environment, how to create a simple user interface, and how to perform navigation. Along the way you'll see some Android Hints that will help make it easier for you to transition your existing skills to the Windows platform. You'll also see some Visual Studio Tips to make you more productive in your development environment. Good luck!

A Windows Store application is simply a collection of pages. A page is the interface seen by the end user.

ANDROID HINT

A page is similar to an Activity in Android development

Each page is designed for the end user to interact with the application. A page is composed of layout controls and various widgets. Only one page can be seen by the end user at a time.

ANDROID HINT

Unlike Android, there is no system level "Back" or application level "Up" button. However, developers can implement navigation within their application through "Back" or "Up" button semantics.

To better familiarize yourself with the user interface components of a Windows Store application the following table maps Android widgets to their Windows Store counterparts:

Purpose

Android

Windows Store

Display Text

TextView

TextBlock

Edit Text

EditText

TextBox

Radio Button

RadioButton

RadioButton

Check Box

CheckBox

CheckBox

Time Input

TimePicker

TimePicker

Date Input

DatePicker

DatePicker

Submit

Button

Button

Show Progress

ProgressBar

ProgressBar

Display a List of Components

LinearLayout

StackPanel

Vertical List of Components

ListView

ListView

2-Dimensionl Grid

GridView

Grid

Display an Image

ImageView

Image

This is by no means an extensive list. As with many development technologies there are a number of ways to perform the same task. For example, instead of using a ListView to display a vertical list in a Windows Store app I could simply use a StackPanel and set its orientation property accordingly. I could also using a ProgressRing instead of a ProgressBar in a Windows Store app to display changes in progress.

In this lesson you'll learn how to create a simple interface for your Windows Store application.

Add a Text Field

For your UI you'll want a label to tell the user what to do, a field where users can input text, and a button. You'll start by adding the text field.

Open the MainPage.xaml file in the root directory of your project.

VISUAL STUDIO TIP

When you open a *.xaml file you'll first see a split view. The top view contains a visual designer. This lets you build layouts using WYSIWYG tools. The bottom contains the markup generated by the designer. For this lesson, you're going to work directly with the XAML. To give yourself more screenspace you can go to a "XAML only" view using the following steps.

  1. Click the button on the toolbar between the designer and the markup view. This will move the markup view to the top and designer view to the bottom.
  2. Click the button on the toolbar between the two views. This will minimize the designer.

Add a <StackPanel> element to the <Grid> element that was added to the page when it was created. Your markup should look like this:

<StackPanel x:Name="theStackPanel"

Orientation="Vertical">

</StackPanel>

ANDROID HINT

A StackPanel is equivalent to a LinearLayout in Android development. It allows you to lay out child elements in either a verity or horizontal orientation.

The x:Name attribute is similar to the android:id attribute. However, you are not required to provide a x:Name attribute for your visual elements.

The Orientation attribute is identical to the android:Orientation attribute of the LinearLayout in Android. The default value for the Orientation attribute is Vertical.

Now add a <TextBox> element inside of the <StackPanel> element you just created. Be sure to provide a x:Name attribute for it. You should end up with something like this:

<StackPanel x:Name="theStackPanel"

Orientation="Vertical">

<TextBox x:Name="theMessage" />

</StackPanel>

Add String Resources

Next you'll want to add a label to your page to instruct the user on what to do. You might be tempted to add a <TextBlock> element and sent its Text attribute to the text you want displayed. While this will work, it goes against best practices for localization. Before you add the label to the page, you need to add a resource file to your project to store the text you want to display in the UI.

ANDROID HINT

A resource (*.resw) file to store strings is similar to the res/values/strings.xml file used in Android projects.

To add a resource file, start by right-clicking the Project in Solution Explorer, click Add, then click New Folder. This will add a new directory to the project. Name the directory Strings.

Add a subdirectory to the Strings directory entitled en-US.

Right-click the en-US directory, click Add, and click New Item. This will open the Add New Item dialog.

VISUAL STUDIO TIP

You can also add a new item by pressing Ctrl + Shift + A on the keyboard.

In the tree on the left-hand side of the dialog under the Visual C# node, select General. Then select Resource File (.resw) from the options presented.

Leave the name of the file as Resources.resw and click Add.

You should now see the Resources.resw file under the en-US directory in Solution Explorer.

If the Resources.resw file is not already open double click it.

Add the message you want to display to the user to Resources.resw. You should end up with something that looks like this:

The name of the string resource is important. As you see in the image above it's in two parts. The first part specifies the name of the visual element the resources will be used for (in this case messageLabel). The second part specifies the name of the property of the visual element you want to use the resource for (in this case the text property).

Add a Label

With the Resource file in place you're now ready to add the label to your page.

Open MainPage.xaml if not's not already open and add a <TextBlock> element above the <TextBox> element in the <StackPanel>. In order to leverage the appropriate string resource be sure to set the x:Uid element of the label to the corresponding to the resource name. You should end up with something like the following:

<StackPanel x:Name="theStackPanel"

Orientation="Vertical">

<TextBlock x:Uid="messageLabel" x:Name="messageLabel" Text="" />

<TextBox x:Name="theMessage" />

</StackPanel>

Add a Button

The last thing you'll need to do as part of this lesson is to add a <Button> element to the page so you can send the message the user enters to a second page.

Before you add the <Button> be sure to add a string resource for its Content property in the Resources.resw file.

Now add a <Button> element under the <TextBox> element in MainPage.xaml, being sure to specify the appropriate x:Uid attribute for localization.

<StackPanel x:Name="theStackPanel"

Orientation="Vertical">

<TextBlock x:Uid="messageLabel" x:Name="messageLabel" Text="" />

<TextBox x:Name="theMessage" />

<Button x:Uid="sendButton" x:Name="sendButton" Content="" />

</StackPanel>

Congratulations! You just created your first Windows Store UI. It might not be pretty, but it works. You can run your app now (press F5 or F6 to see the results).

Previous Posts in this Series

  1. Setting up the Development Environment
  2. Creating Your First Windows Store Project
  3. Exploring the Windows Store Project
  4. Running the Windows Store Application

Additional Resources


Viewing all articles
Browse latest Browse all 56

Latest Images

Trending Articles





Latest Images