• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1page.title=Technical Resources
2@jd:body
3
4<style type="text/css">
5  {@literal @import} "{@docRoot}assets/android-developer-resource-browser.css";
6</style>
7
8<script type="text/javascript" src="{@docRoot}assets/android-developer-resource-browser.js"></script>
9<script type="text/javascript" src="{@docRoot}assets/microtemplate.js"></script>
10
11<div>
12  <p style="display: none; float: right">Filter: <input id="resource-browser-keyword-filter"/></p>
13  <p id="resource-browser-search-params">Showing all technical resources:</p>
14</div>
15
16<noscript>
17  <p class="note"><strong>Error:</strong>
18    You must have JavaScript enabled to view this page. Resources are also
19    available offline in the SDK.
20  </p>
21</noscript>
22
23<div id="resource-browser-results">
24  <div class="no-results">No results.</div>
25</div>
26
27<script type="text/html" id="tmpl_resource_browser_result">
28<div class="result">
29  <h3>
30    <% if ('external' in tagsHash) { %><strong>External: </strong> <% } %>
31    <a href="<%= path %>"><%= title.en %></a>
32    <% if ('new' in tagsHash) { %><span class="new">new!</span> <% } %>
33  </h3>
34  <p class="resource-meta"><%
35    var __g = ['', ''];
36    if ('article' in tagsHash) {
37      __g = ['Article', 'about'];
38    } else if ('tutorial' in tagsHash) {
39      __g = ['Tutorial', 'on'];
40    } else if ('sample' in tagsHash) {
41      __g = ['Sample', 'for'];
42    } else if ('video' in tagsHash) {
43      __g = ['Video', 'about'];
44    }
45  %>
46  <%= __g[0] %><% if (topicsHtml) { %> <%= __g[1] %><% } %> <%= topicsHtml %></p>
47  <p><%= description.en %></p>
48</div>
49</script>
50