Draw your Next App Idea with Ink to Code

宁可枝头抱香死,何曾吹落北风中。这篇文章主要讲述Draw your Next App Idea with Ink to Code相关的知识,希望能为你提供帮助。
Imagine that you’ve just been struck by inspiration for your next great app. You might start by jotting some notes and sketching out screens. If you’re thinking about reaching for a sketchbook, a whiteboard, or even the back of a napkin, think about reaching for your computer and installing  Ink to Code  instead.
Ink to Code, a Microsoft Garage project, is the digital version of the back of a napkin for your app ideas. A nimble Windows 10 app, it launches in seconds and provides a quick canvas for you to sketch out screens with your stylus. Let’s give it a try!
Getting StartedThe first thing you’ll want to do is  install  Ink to Code  from the Microsoft Store. Upon launching it, you’ll be greeted by its minimal user interface and large drawing area. To get some guidance on what to draw, click the  Guide  button in the toolbar. This shows you the different design elements that  Ink to Code  recognizes:

Draw your Next App Idea with Ink to Code

文章图片

Drawing Your AppLet’s pretend you’re inspired to make the next great tip calculator. This video illustrates how you might draw it in  Ink to Code:
Video Player     
As you draw each design element, you’ll notice that  Ink to Code  converts the ink strokes into recognized components. Tapping on each of these items displays a menu that allows you to delete them, or if they were misrecognized, convert them into different components. You’ll also notice that tapping the second button in the left toolbar switches into constraint mode, where you can draw constraint lines that can be used to align other elements.
How does this magic work? Internally,  Ink to Code  uses the powerful  Windows Ink platform  and some of its own heuristics to recognize common design elements in your app sketches and then convert them into UWP XAML or android layout XML that can be loaded directly into Visual Studio.
Exporting to Visual StudioInk to Code  is great for quickly sketching the broad strokes of your app idea, but to start refining it into a prototype, you’ll want to export your drawings to Visual Studio. For this exercise, we’ll build a Xamarin.Android app:
  1. Click the  Export  button in the  Ink to Code  toolbar and choose  Android  from the menu. Then choose a temporary directory in which to export the layout XML file.
    Draw your Next App Idea with Ink to Code

    文章图片
  2. Open Visual Studio 2017 and create a new Blank Android App project. If you cannot find the project template,  ensure that you have Xamarin installed. You can also use Visual Studio for Mac and ensure  Android  is selected during  installation.
  3. Find  Main.axml  in your Android project under the path  Resources\layout. Replace it with the file you exported in the first step.
  4. Ink to Code  uses  ConstraintLayout  in its exported Android XML, so you’ll need to add the  Android.Support.Constraint.Layout  NuGet package to your project.
  5. Click Run, and you should see the screen you sketched launch in an Android emulator as real, interactive Android widgets!
You’ll probably want to continue refining your layout in Visual Studio after you export it from  Ink to Code. To do this, simply double click on the  Main.axml  file and the Xamarin Android Designer will open:
【Draw your Next App Idea with Ink to Code】
Draw your Next App Idea with Ink to Code

文章图片



    推荐阅读