Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec81e8bd authored by Roman Nurik's avatar Roman Nurik Committed by Android (Google) Code Review
Browse files

Merge "Revamp resources listing, part 1 (frameworks/base)"

parents 58006194 e577d72a
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
page.title=Technical Resources
@jd:body

<style type="text/css">
  {@literal @import} "{@docRoot}assets/android-developer-resource-browser.css";
</style>

<script type="text/javascript" src="{@docRoot}assets/android-developer-resource-browser.js"></script>
<script type="text/javascript" src="{@docRoot}assets/microtemplate.js"></script>

<div>
  <p style="display: none; float: right">Filter: <input id="resource-browser-keyword-filter"/></p>
  <p id="resource-browser-search-params">Showing all technical resources:</p>
</div>

<noscript>
  <p class="note"><strong>Error:</strong>
    You must have JavaScript enabled to view this page. Resources are also
    available offline in the SDK.
  </p>
</noscript>

<div id="resource-browser-results">
  <div class="no-results">No results.</div>
</div>

<script type="text/html" id="tmpl_resource_browser_result">
<div class="result">
  <h3>
    <% if ('external' in tagsHash) { %><strong>External: </strong> <% } %>
    <a href="<%= path %>"><%= title.en %></a>
    <% if ('new' in tagsHash) { %><span class="new">new!</span> <% } %>
  </h3>
  <p class="resource-meta"><%
    var __g = ['', ''];
    if ('article' in tagsHash) {
      __g = ['Article', 'about'];
    } else if ('tutorial' in tagsHash) {
      __g = ['Tutorial', 'on'];
    } else if ('sample' in tagsHash) {
      __g = ['Sample', 'for'];
    } else if ('video' in tagsHash) {
      __g = ['Video', 'about'];
    }
  %>
  <%= __g[0] %><% if (topicsHtml) { %> <%= __g[1] %><% } %> <%= topicsHtml %></p>
  <p><%= description.en %></p>
</div>
</script>
+74 −22
Original line number Diff line number Diff line
page.title=Developer Resources
@jd:body

<style type="text/css">
  #resource-list-table td {
    border: 0;
    padding: 0 24px;
    width: 33%;
    max-width: 250px;
    border-right: 1px solid #ddd;
  }

  #resource-list-table td.last {
    border-right: 0;
    padding-right: 0;
  }
</style>

<p>
This section provides technical articles, tutorials, sample code, and other
This section provides articles, tutorials, sample code, and other
information to help you quickly implement the features you want in your
application.
application. To return to this page later, just click the "Resources"
tab while any Resources page is loaded.
</p>

<dl>
<dt><b>Technical Articles</b></dt>
<dd>Focused discussions about Android development subjects, including
optimizations, tips, interesting implementations,
and so on. Most of the articles provide "how-to" instructions for adding
features or functionality to your app. The articles are drawn from posts to the
Android Developers Blog.
</dd>

<dt><b>Tutorials</b></dt>
<dd>Step-by-step instructions demonstrating how to build an Android application
that has the specific features you want. </dd>

<dt><b>Sample Code</b></dt>
<dd>Fully-functioning sample applications that you can look at or build and run,
<h2>Technical Resources</h2>

<table id="resource-list-table">
<tr>
  <td>
    <a href="{@docRoot}resources/browser.html?tag=sample">
      <img src="{@docRoot}assets/images/resource-big-sample.png"/>
    </a>
    <h3><a href="{@docRoot}resources/browser.html?tag=sample">
      Sample Code
    </a></h3>
    <p>Fully-functioning sample applications that you can build and run
    to learn about how Android works. Feel free to reuse any of the code or
techniques that you find in the samples!</dd>
    techniques in the samples.</p>
  </td>
  <td>
    <a href="{@docRoot}resources/browser.html?tag=article">
      <img src="{@docRoot}assets/images/resource-big-article.png"/>
    </a>
    <h3><a href="{@docRoot}resources/browser.html?tag=article">
      Articles
    </a></h3>
    <p>Focused discussions about Android development subjects, including
    optimizations, tips, interesting implementations, "how-tos",
    and so on.</p>
  </td>
  <td>
    <a href="{@docRoot}resources/browser.html?tag=tutorial">
      <img src="{@docRoot}assets/images/resource-big-tutorial.png"/>
    </a>
    <h3><a href="{@docRoot}resources/browser.html?tag=tutorial">
      Tutorials
    </a></h3>
    <p>Step-by-step instructions demonstrating how to build an Android application
    that has the specific features you want.</p>
  </td>
  <!-- <td class="last">
    <a href="{@docRoot}resources/browser.html?tag=video">
      <img src="{@docRoot}assets/images/resource-big-video.png"/>
    </a>
    <h3><a href="{@docRoot}resources/browser.html?tag=video">
      Videos &amp; Screencasts
    </a></h3>
    <p>Videos and presentation slides from developer events, along with
    screencasts to walk you through common Android development
    workflows.</p>
  </td> -->
</tr>
</table>

<h2>Other Resources</h2>

<dl>
<dt><b>Community</b></dt>
<dd>Links to the Android discussion groups and information about other ways to
collaborate with other developers. </dd>

<dt><b>Device Dashboard</b></dt>
<dd>Device distribution data, grouped by various dimensions such as screen size
and Android platform version. </dd>

<dt><b>More</b></dt>
<dd>Quick development tips, troubleshooting information, and frequently asked
questions (FAQs). </dd>
</dl>

<p>To return to this page later, just click the "Resources" tab while any
Resources page is loaded. </p>
 No newline at end of file