Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / tools / templates / other / CustomView / template.xml
blob666d319b47dc7a0524209f4fe422ab1c2683fa64
1 <?xml version="1.0"?>
2 <template
3     format="4"
4     revision="2"
5     name="Custom View"
6     description="Creates a new custom view that extends android.view.View and exposes custom attributes.">
8     <category value="UI Component" />
10     <parameter
11         id="packageName"
12         name="Package name"
13         type="string"
14         constraints="package"
15         default="com.mycompany.myapp" />
17     <parameter
18         id="viewClass"
19         name="View Class"
20         type="string"
21         constraints="class|unique|nonempty"
22         default="MyView"
23         help="By convention, should end in 'View'" />
25     <globals file="globals.xml.ftl" />
26     <execute file="recipe.xml.ftl" />
28 </template>