1 page.title=App Components 2 page.landing=true 3 page.landing.intro=Android's application framework lets you create extremely rich and innovative apps using a set of reusable components. This section explains how Android apps work and how you use components to build them. 4 page.landing.image=images/develop/app_components.png 5 6 @jd:body 7 <div id="butterbar-wrapper" > 8 <div id="butterbar" > 9 <div id="butterbar-message"> 10 <a target="_blank" href="https://docs.google.com/a/google.com/forms/d/1EHLPGqhbxj2HungHRRN4_0K9TGpc-Izy-u46vBDgS8Q/viewform"> 11 Take the Android Developer Survey</a> 12 </div> 13 </div> 14 </div> 15 16 <div class="landing-docs"> 17 18 <div class="col-6"> 19 <h3>Blog Articles</h3> 20 21 <a href="http://android-developers.blogspot.com/2012/05/using-dialogfragments.html"> 22 <h4>Using DialogFragments</h4> 23 <p>In this post, Ill show how to use DialogFragments with the v4 support library (for backward compatibility on pre-Honeycomb devices) to show a simple edit dialog and return a result to the calling Activity using an interface.</p> 24 </a> 25 26 <a href="http://android-developers.blogspot.com/2011/03/fragments-for-all.html"> 27 <h4>Fragments For All</h4> 28 <p>Today weve released a static library that exposes the same Fragments API (as well as the new LoaderManager and a few other classes) so that applications compatible with Android 1.6 or later can use fragments to create tablet-compatible user interfaces. </p> 29 </a> 30 31 <a 32 href="http://android-developers.blogspot.com/2010/07/multithreading-for-performance.html"> 33 <h4>Multithreading for Performance</h4> 34 <p>A good practice in creating responsive applications is to make sure your main UI thread 35 does the minimum amount of work. Any potentially long task that may hang your application should be 36 handled in a different thread.</p> 37 </a> 38 </div> 39 40 <div class="col-6"> 41 <h3>Training</h3> 42 43 <a href="http://developer.android.com/training/basics/activity-lifecycle/index.html"> 44 <h4>Managing the Activity Lifecycle</h4> 45 <p>This class explains important lifecycle callback methods that each Activity 46 instance receives and how you can use them so your activity does what the user expects and does not consume system 47 resources when your activity doesn't need them.</p> 48 </a> 49 50 <a href="http://developer.android.com/training/basics/fragments/index.html"> 51 <h4>Building a Dynamic UI with Fragments</h4> 52 <p>This class shows you how to create a dynamic user experience with fragments and optimize 53 your app's user experience for devices with different screen sizes, all while continuing to support 54 devices running versions as old as Android 1.6.</p> 55 </a> 56 57 <a href="http://developer.android.com/training/sharing/index.html"> 58 <h4>Sharing Content</h4> 59 <p>This class covers some common ways you can send and receive content between 60 applications using Intent APIs and the ActionProvider object.</p> 61 </a> 62 </div> 63 64 </div> 65