Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / tools / templates / activities / SettingsActivity / template.xml
blobcedb287342724d08e29e5712e05b9336865dd31e
1 <?xml version="1.0"?>
2 <template
3     format="4"
4     revision="4"
5     name="Settings Activity"
6     description="Creates a new application settings activity that presents alternative layouts on handset and tablet-size screens."
7     minApi="4"
8     minBuildApi="11"
9     category="Activity">
11     <dependency name="android-support-v4" revision="8" />
13     <category value="Activity" />
14     <formfactor value="Mobile" />
16     <parameter
17         id="activityClass"
18         name="Activity Name"
19         type="string"
20         constraints="class|unique|nonempty"
21         default="SettingsActivity"
22         help="The name of the activity class to create" />
24     <parameter
25         id="activityTitle"
26         name="Title"
27         type="string"
28         constraints="nonempty"
29         default="Settings"
30         help="The name of the activity." />
32     <parameter
33         id="parentActivityClass"
34         name="Hierarchical Parent"
35         type="string"
36         constraints="activity|exists|empty"
37         default=""
38         help="The hierarchical parent activity, used to provide a default implementation for the 'Up' button" />
40     <parameter
41         id="packageName"
42         name="Package name"
43         type="string"
44         constraints="package"
45         default="com.mycompany.myapp" />
47     <!-- 128x128 thumbnails relative to template.xml -->
48     <thumbs>
49         <!-- default thumbnail is required -->
50         <thumb>template_settings_activity.png</thumb>
51     </thumbs>
53     <globals file="globals.xml.ftl" />
54     <execute file="recipe.xml.ftl" />
56 </template>