aboutsummaryrefslogtreecommitdiffstats
path: root/templates/activities/FullscreenActivity/template.xml
diff options
context:
space:
mode:
authorJosiah Gaskin <josiahgaskin@google.com>2013-07-31 14:21:16 -0700
committerJosiah Gaskin <josiahgaskin@google.com>2013-07-31 14:21:16 -0700
commitf7c5f6b3fb2f6bd820d0d70ec48be12df103cf12 (patch)
tree91e9e7227cc1a79a08edd6f742a918628b08d994 /templates/activities/FullscreenActivity/template.xml
parentbe3b71eb1f30ebaf063d0df63e1f082844df24a3 (diff)
downloadsdk-f7c5f6b3fb2f6bd820d0d70ec48be12df103cf12.zip
sdk-f7c5f6b3fb2f6bd820d0d70ec48be12df103cf12.tar.gz
sdk-f7c5f6b3fb2f6bd820d0d70ec48be12df103cf12.tar.bz2
Update template location for SDK build
This change removes templates from the SDK source tree (from sdk/templates) and points the build/tools.atree build location file to their new location in tools/base/templates Change-Id: Id37b24eceaae6dcc0b3bf5078a759a337cb13467
Diffstat (limited to 'templates/activities/FullscreenActivity/template.xml')
-rw-r--r--templates/activities/FullscreenActivity/template.xml68
1 files changed, 0 insertions, 68 deletions
diff --git a/templates/activities/FullscreenActivity/template.xml b/templates/activities/FullscreenActivity/template.xml
deleted file mode 100644
index d2617fb..0000000
--- a/templates/activities/FullscreenActivity/template.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0"?>
-<template
- format="3"
- revision="3"
- name="Fullscreen Activity"
- description="Creates a new activity that toggles the visibility of the system UI (status and navigation bars) and action bar upon user interaction."
- minApi="4"
- minBuildApi="16">
- <dependency name="android-support-v4" revision="8" />
-
- <category value="Activities" />
-
- <parameter
- id="activityClass"
- name="Activity Name"
- type="string"
- constraints="class|unique|nonempty"
- default="FullscreenActivity"
- help="The name of the activity class to create" />
-
- <parameter
- id="layoutName"
- name="Layout Name"
- type="string"
- constraints="layout|unique|nonempty"
- suggest="${activityToLayout(activityClass)}"
- default="activity_fullscreen"
- help="The name of the layout to create for the activity" />
-
- <parameter
- id="activityTitle"
- name="Title"
- type="string"
- constraints="nonempty"
- default="FullscreenActivity"
- suggest="${activityClass}"
- help="The name of the activity." />
-
- <parameter
- id="isLauncher"
- name="Launcher Activity"
- type="boolean"
- default="false"
- help="If true, this activity will have a CATEGORY_LAUNCHER intent filter, making it visible in the launcher" />
-
- <parameter
- id="parentActivityClass"
- name="Hierarchical Parent"
- type="string"
- constraints="activity|exists|empty"
- default=""
- help="The hierarchical parent activity, used to provide a default implementation for the 'Up' button" />
-
- <parameter
- id="packageName"
- name="Package name"
- type="string"
- constraints="package"
- default="com.mycompany.myapp" />
-
- <thumbs>
- <thumb>template_fullscreen_activity.png</thumb>
- </thumbs>
-
- <globals file="globals.xml.ftl" />
- <execute file="recipe.xml.ftl" />
-
-</template>