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

Commit 1a89ae4c authored by Katie McCormick's avatar Katie McCormick
Browse files

Doc update: new Volley class

Change-Id: Ife3a9a64439e07aaaf92a22adc6d1678138caf7d
parent 1f1bb9d0
Loading
Loading
Loading
Loading

\

0 → 100644
+19 −0
Original line number Diff line number Diff line
Doc update: new Volley class

Change-Id: Ife3a9a64439e07aaaf92a22adc6d1678138caf7d

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch volley
# Changes to be committed:
#	new file:   docs/html/images/training/volley-request.png
#	modified:   docs/html/training/basics/network-ops/connecting.jd
#	modified:   docs/html/training/basics/network-ops/index.jd
#	modified:   docs/html/training/training_toc.cs
#	new file:   docs/html/training/volley/index.jd
#	new file:   docs/html/training/volley/request-custom.jd
#	new file:   docs/html/training/volley/request.jd
#	new file:   docs/html/training/volley/requestqueue.jd
#	new file:   docs/html/training/volley/setup.jd
#	new file:   docs/html/training/volley/simple.jd
#
+60.4 KiB
Loading image diff...
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ next.link=managing.html

<h2>You should also read</h2>
<ul>
  <li><a href="{@docRoot}training/volley/index.html">Transmitting Network Data Using Volley</a></li>
  <li><a href="{@docRoot}training/monitoring-device-state/index.html">Optimizing Battery Life</a></li>
  <li><a href="{@docRoot}training/efficient-downloads/index.html">Transferring Data Without Draining the Battery</a></li>
  <li><a href="{@docRoot}guide/webapps/index.html">Web Apps Overview</a></li>
+9 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ next.link=connecting.html
  <li><a href="{@docRoot}training/monitoring-device-state/index.html">Optimizing Battery Life</a></li>
  <li><a href="{@docRoot}training/efficient-downloads/index.html">Transferring Data Without Draining the Battery</a></li>
  <li><a href="{@docRoot}guide/webapps/index.html">Web Apps Overview</a></li>
  <li><a href="{@docRoot}training/volley/index.html">Transmitting Network Data Using Volley</a></li>
</ul>


@@ -51,6 +52,14 @@ as a source of reusable code for your own application.</p>
fundamental building blocks for creating Android applications that download
content and parse data efficiently, while minimizing network traffic.</p>

<p class="note"><strong>Note:</strong> See the class <a href="{@docRoot}
training/volley/index.html">Transmitting Network Data Using Volley</a>
for information on Volley, an HTTP library that makes networking for Android apps
easier and faster. Volley is available through the open
<a href="https://android.googlesource.com/platform/frameworks/volley">AOSP</a>
repository. Volley may be able to help you streamline and improve the performance
of your app's network operations.</p>



<h2>Lessons</h2>
+29 −0
Original line number Diff line number Diff line
@@ -609,6 +609,35 @@ include the action bar on devices running Android 2.1 or higher."
            </li>
        </ul>
      </li>
      <li class="nav-section">
        <div class="nav-section-header">
          <a href="<?cs var:toroot ?>training/volley/index.html"
             description="How to perform fast, scalable UI operations over the network using Volley"
             >Transmitting Network Data Using Volley</a>
        </div>
        <ul>
            <li>
                <a href="<?cs var:toroot ?>training/volley/simple.html">
                Sending a Simple Request
                </a>
            </li>
            <li>
                <a href="<?cs var:toroot ?>training/volley/requestqueue.html">
                Setting Up a RequestQueue
                </a>
            </li>
            <li>
                <a href="<?cs var:toroot ?>training/volley/request.html">
                Making a Standard Request
                </a>
            </li>
            <li>
                <a href="<?cs var:toroot ?>training/volley/request-custom.html">
                Implementing a Custom Request
                </a>
            </li>
        </ul>
      </li>

    </ul>
  </li>
Loading