aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/activities/BlankActivity/template.xml4
-rw-r--r--templates/activities/FullscreenActivity/template.xml6
-rw-r--r--templates/activities/LoginActivity/template.xml4
-rw-r--r--templates/activities/MasterDetailFlow/template.xml4
-rw-r--r--templates/activities/SettingsActivity/template.xml4
-rw-r--r--templates/other/BroadcastReceiver/template.xml4
-rw-r--r--templates/other/ContentProvider/template.xml4
-rw-r--r--templates/other/CustomView/template.xml4
-rw-r--r--templates/other/Service/template.xml4
-rw-r--r--templates/projects/NewAndroidApplication/template.xml2
10 files changed, 20 insertions, 20 deletions
diff --git a/templates/activities/BlankActivity/template.xml b/templates/activities/BlankActivity/template.xml
index 31e8bb3..0368c1a 100644
--- a/templates/activities/BlankActivity/template.xml
+++ b/templates/activities/BlankActivity/template.xml
@@ -2,8 +2,8 @@
<template
format="3"
revision="2"
- name="New Blank Activity"
- description="Creates a new blank activity, with optional inner navigation.">
+ name="Blank Activity"
+ description="Creates a new blank activity, with an action bar and optional navigational elements such as tabs or horizontal swipe.">
<dependency name="android-support-v4" revision="8" />
<category value="Activities" />
diff --git a/templates/activities/FullscreenActivity/template.xml b/templates/activities/FullscreenActivity/template.xml
index bb2dbd5..8ebbb03 100644
--- a/templates/activities/FullscreenActivity/template.xml
+++ b/templates/activities/FullscreenActivity/template.xml
@@ -2,9 +2,9 @@
<template
format="3"
revision="2"
- name="New Fullscreen Activity"
- description="Creates a new activity that shows and hides the system UI (status bar, navigation/system bar), and action bar, upon user interaction."
- minApi="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" />
diff --git a/templates/activities/LoginActivity/template.xml b/templates/activities/LoginActivity/template.xml
index 600aa4e..bca6efb 100644
--- a/templates/activities/LoginActivity/template.xml
+++ b/templates/activities/LoginActivity/template.xml
@@ -2,8 +2,8 @@
<template
format="3"
revision="2"
- name="New Login Activity"
- description="Creates a new login activity, allowing users to enter an email address and password to login or register for your service."
+ name="Login Activity"
+ description="Creates a new login activity, allowing users to enter an email address and password to log in to or register with your application."
minApi="3"
minBuildApi="13">
<dependency name="android-support-v4" revision="8" />
diff --git a/templates/activities/MasterDetailFlow/template.xml b/templates/activities/MasterDetailFlow/template.xml
index 5c97b2b..95fe597 100644
--- a/templates/activities/MasterDetailFlow/template.xml
+++ b/templates/activities/MasterDetailFlow/template.xml
@@ -2,9 +2,9 @@
<template
format="3"
revision="2"
- name="New Master/Detail Flow"
+ name="Master/Detail Flow"
minApi="11"
- description="Creates a new master/detail flow, which is two columns on tablets, and one column on smaller screens. This creates a master fragment, detail fragment, and two activities.">
+ description="Creates a new master/detail flow, allowing users to view a collection of objects as well as details for each object. This flow is presented using two columns on tablet-size screens and one column on handsets and smaller screens. This template creates two activities, a master fragment, and a detail fragment.">
<dependency name="android-support-v4" revision="8" />
<thumbs>
diff --git a/templates/activities/SettingsActivity/template.xml b/templates/activities/SettingsActivity/template.xml
index a5d084f..cc990858 100644
--- a/templates/activities/SettingsActivity/template.xml
+++ b/templates/activities/SettingsActivity/template.xml
@@ -2,8 +2,8 @@
<template
format="3"
revision="2"
- name="New Settings Activity"
- description="Creates a new application settings activity."
+ name="Settings Activity"
+ description="Creates a new application settings activity that presents alternative layouts on handset and tablet-size screens."
minApi="4"
minBuildApi="11">
<dependency name="android-support-v4" revision="8" />
diff --git a/templates/other/BroadcastReceiver/template.xml b/templates/other/BroadcastReceiver/template.xml
index 5a998f2..b17851e 100644
--- a/templates/other/BroadcastReceiver/template.xml
+++ b/templates/other/BroadcastReceiver/template.xml
@@ -2,8 +2,8 @@
<template
format="1"
revision="1"
- name="New Broadcast Receiver"
- description="Creates a new broadcast receiver class">
+ name="Broadcast Receiver"
+ description="Creates a new broadcast receiver component and adds it to your Android manifest.">
<parameter
id="className"
diff --git a/templates/other/ContentProvider/template.xml b/templates/other/ContentProvider/template.xml
index 32a113a..21ed1be 100644
--- a/templates/other/ContentProvider/template.xml
+++ b/templates/other/ContentProvider/template.xml
@@ -2,8 +2,8 @@
<template
format="1"
revision="1"
- name="New Content Provider"
- description="Creates a new content provider class">
+ name="Content Provider"
+ description="Creates a new content provider component and adds it to your Android manifest.">
<parameter
id="className"
diff --git a/templates/other/CustomView/template.xml b/templates/other/CustomView/template.xml
index 87a1b2a..55f6f3d 100644
--- a/templates/other/CustomView/template.xml
+++ b/templates/other/CustomView/template.xml
@@ -2,8 +2,8 @@
<template
format="1"
revision="1"
- name="New Custom View"
- description="Creates a new custom view that extends android.view.View, and exposes custom attributes.">
+ name="Custom View"
+ description="Creates a new custom view that extends android.view.View and exposes custom attributes.">
<category value="UI Components" />
diff --git a/templates/other/Service/template.xml b/templates/other/Service/template.xml
index bd22124..481fe74 100644
--- a/templates/other/Service/template.xml
+++ b/templates/other/Service/template.xml
@@ -2,8 +2,8 @@
<template
format="1"
revision="1"
- name="New Service"
- description="Creates a new service class">
+ name="Service"
+ description="Creates a new service component and adds it to your Android manifest.">
<parameter
id="className"
diff --git a/templates/projects/NewAndroidApplication/template.xml b/templates/projects/NewAndroidApplication/template.xml
index fd5ee5e..a60cfc6 100644
--- a/templates/projects/NewAndroidApplication/template.xml
+++ b/templates/projects/NewAndroidApplication/template.xml
@@ -2,7 +2,7 @@
<template
format="1"
revision="1"
- name="New Android Application"
+ name="Android Application"
description="Creates a new Android application.">
<dependency name="android-support-v4" revision="8" />