summaryrefslogtreecommitdiffstats
path: root/docs/html
diff options
context:
space:
mode:
authorRich Sloager <rslogar@google.com>2015-07-30 18:12:58 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-07-30 18:12:58 +0000
commit4c5b6cc42e4b61a4176007a04906ad4a19d0623b (patch)
tree8ce960a0336d84a85ddb4f96e8721144895f488c /docs/html
parentb8987585ea1f677d61073d63a7b33e6d9cd75ebb (diff)
parent2f3c16659b4ee5de54fe297e8e797d8631aab7d5 (diff)
downloadframeworks_base-4c5b6cc42e4b61a4176007a04906ad4a19d0623b.zip
frameworks_base-4c5b6cc42e4b61a4176007a04906ad4a19d0623b.tar.gz
frameworks_base-4c5b6cc42e4b61a4176007a04906ad4a19d0623b.tar.bz2
Merge "docs: studio 1.3 live templates" into mnc-preview-docs
Diffstat (limited to 'docs/html')
-rw-r--r--docs/html/sdk/installing/studio-tips.jd33
1 files changed, 32 insertions, 1 deletions
diff --git a/docs/html/sdk/installing/studio-tips.jd b/docs/html/sdk/installing/studio-tips.jd
index 7d37b1d..b8511a4 100644
--- a/docs/html/sdk/installing/studio-tips.jd
+++ b/docs/html/sdk/installing/studio-tips.jd
@@ -131,11 +131,42 @@ a class, method, or field from a library for which you do not have source file a
build and run code prototypes. Together with Android Studio coding assistance, scratch
files allow you to quickly run and debug code updates with the support of all file operations.
By embedding code created with scripting languages, you can run your code from within the
- scratch file.</p>
+ scratch file.</p>
</li>
</ul>
+<h3 id="live-template">Live templates</h3>
+<p>Live templates allow you to enter code snippets for fast insertion and completion of small chunks
+of code. To insert a live template, type the template abbreviations and press the
+Tab key. Android Studio inserts the code snippet associated with the template into
+your code. </p>
+
+<p>For example, entering the <code>newInstance</code> abbreviation followed by the
+Tab key inserts the code for a new fragment instance with argument placeholders. </p>
+
+<pre>
+public static $fragment$ newInstance($args$) {
+ $nullChecks$
+ Bundle args = new Bundle();
+ $addArgs$
+ $fragment$ fragment = new $fragment$();
+ fragment.setArguments(args);
+ return fragment;
+}
+</pre>
+
+<p>Similarly, the <code>fbc</code> abbreviation inserts a <code>findViewById</code> call along
+with cast and resource id syntax. </p>
+
+<pre>
+() findViewById(R.id.);
+</pre>
+
+<p>Use the <strong>File &gt; Settings &gt; Editor &gt; Live Templates</strong> menu option to
+display the full list of supported live templates and customize the inserted code. </p>
+
+
<h2 id="intellij">Working with IntelliJ-based Coding Practices</h3>