html cleanup. delete quickviews
Change-Id: Ifd71ca32848982919f37f8927acd8b66b0cf4438
This commit is contained in:
@@ -4,12 +4,6 @@ page.tags="activity","intent"
|
||||
|
||||
<div id="qv-wrapper">
|
||||
<div id="qv">
|
||||
<h2>Quickview</h2>
|
||||
<ul>
|
||||
<li>An activity provides a user interface for a single screen in your application</li>
|
||||
<li>Activities can move into the background and then be resumed with their state restored</li>
|
||||
</ul>
|
||||
|
||||
<h2>In this document</h2>
|
||||
<ol>
|
||||
<li><a href="#Creating">Creating an Activity</a>
|
||||
|
||||
@@ -6,12 +6,6 @@ parent.link=services.html
|
||||
|
||||
<div id="qv-wrapper">
|
||||
<ol id="qv">
|
||||
<h2>Quickview</h2>
|
||||
<ul>
|
||||
<li>A bound service allows other components to bind to it, in order to interact with it and
|
||||
perform interprocess communication</li>
|
||||
<li>A bound service is destroyed once all clients unbind, unless the service was also started</li>
|
||||
</ul>
|
||||
<h2>In this document</h2>
|
||||
<ol>
|
||||
<li><a href="#Basics">The Basics</a></li>
|
||||
|
||||
@@ -5,15 +5,6 @@ parent.link=activities.html
|
||||
|
||||
<div id="qv-wrapper">
|
||||
<div id="qv">
|
||||
|
||||
<h2>Quickview</h2>
|
||||
<ul>
|
||||
<li>Fragments decompose application functionality and UI into reusable modules</li>
|
||||
<li>Add multiple fragments to a screen to avoid switching activities</li>
|
||||
<li>Fragments have their own lifecycle, state, and back stack</li>
|
||||
<li>Fragments require API Level 11 or greater</li>
|
||||
</ul>
|
||||
|
||||
<h2>In this document</h2>
|
||||
<ol>
|
||||
<li><a href="#Design">Design Philosophy</a></li>
|
||||
|
||||
@@ -5,13 +5,6 @@ page.tags="lifecycle","background"
|
||||
|
||||
<div id="qv-wrapper">
|
||||
<div id="qv">
|
||||
<h2>Quickview</h2>
|
||||
<ul>
|
||||
<li>Every application runs in its own process and all components of the application run in that
|
||||
process, by default</li>
|
||||
<li>Any slow, blocking operations in an activity should be done in a new thread, to avoid slowing
|
||||
down the user interface</li>
|
||||
</ul>
|
||||
|
||||
<h2>In this document</h2>
|
||||
<ol>
|
||||
|
||||
@@ -3,14 +3,6 @@ page.title=Services
|
||||
|
||||
<div id="qv-wrapper">
|
||||
<ol id="qv">
|
||||
<h2>Quickview</h2>
|
||||
<ul>
|
||||
<li>A service can run in the background to perform work even while the user is in a different
|
||||
application</li>
|
||||
<li>A service can allow other components to bind to it, in order to interact with it and
|
||||
perform interprocess communication</li>
|
||||
<li>A service runs in the main thread of the application that hosts it, by default</li>
|
||||
</ul>
|
||||
<h2>In this document</h2>
|
||||
<ol>
|
||||
<li><a href="#Basics">The Basics</a></li>
|
||||
|
||||
@@ -5,14 +5,6 @@ parent.link=activities.html
|
||||
|
||||
<div id="qv-wrapper">
|
||||
<div id="qv">
|
||||
<h2>Quickview</h2>
|
||||
<ul>
|
||||
<li>All activities belong to a task</li>
|
||||
<li>A task contains a collection of activities in the order in which the user interacts with
|
||||
them</li>
|
||||
<li>Tasks can move to the background and retain the state of each activity in order for users
|
||||
to perform other tasks without losing their work</li>
|
||||
</ul>
|
||||
|
||||
<h2>In this document</h2>
|
||||
<ol>
|
||||
|
||||
@@ -41,7 +41,7 @@ new devices using the Backup API.</p>
|
||||
|
||||
<h2 id="register">Register for the Android Backup Service</h2>
|
||||
<p>This lesson requires the use of the <a
|
||||
href="http://code.google.com/android/backup/index.html">Android Backup
|
||||
href="{@docRoot}google/backup/index.html">Android Backup
|
||||
Service</a>, which requires registration. Go ahead and <a
|
||||
href="http://code.google.com/android/backup/signup.html">register here</a>. Once
|
||||
that's done, the service pre-populates an XML tag for insertion in your Android
|
||||
|
||||
@@ -6,6 +6,16 @@ startpage=true
|
||||
|
||||
@jd:body
|
||||
|
||||
<div id="tb-wrapper">
|
||||
<div id="tb">
|
||||
|
||||
<h2>Dependencies and prerequisites</h2>
|
||||
<ul>
|
||||
<li>Android 2.2 (API level 8) and higher</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p>By providing powerful APIs for internet connectivity, the Android framework
|
||||
helps you build rich cloud-enabled apps that sync their data to a remote web
|
||||
service, making sure all your devices always stay in sync, and your valuable
|
||||
|
||||
Reference in New Issue
Block a user