Oreilly - Essentials of Android App Development and More Essentials - 9780134299723
Oreilly - Essentials of Android App Development and More Essentials
by Ian Clifton | Publisher: Addison-Wesley Professional | Release Date: December 2015 | ISBN: 9780134299723


Essentials of Android App Development6+ Hours of Video InstructionThe Essentials of Android Application Development LiveLessons (Second Edition) provides developers with a hands-on introduction to Android application development, covering the most important classes and techniques.Description In this video training, Ian starts with the installation of Android Studio, configuring an emulator, preparing a device for development, and creating a simple “hello world” app. He then systematically covers each of the essential parts of Android application development, starting with views, activities, and fragments. Using an AsyncTask to perform background operations comes next, and then services, BroadcastReceivers, and system notifications are explained. The video continues with saving data via SharedPreferences and the file system and enhancing the UI with themes and animations and finishes with tips for becoming more efficient with Android Studio and how to submit an app to the Play Store. After watching this video series, developers will be able to create Android applications from scratch and dive into advanced Android topics.Related Files Download the code files associated with this LiveLesson from www.informit.com/title/9780134427348.Related Videohttps://www.informit.com/store/essentials-of-android-application-development-livelessons-9780132996587Skill LevelBeginner to intermediateWhat You Will LearnInstall and use Android StudioCreate an Android applicationCustomize the UI with views, themes, and animationsRun code in the backgroundCreate and use services, BroadcastReceivers, and system notificationsSave data to SharedPreferences and the file systemBecome efficient with Android Studio and submit an app to the Play StoreWho Should Take This CourseDevelopers who want to quickly learn the core of Android application development Course RequirementsBasic understanding of programming and developmentFamiliarity with the Java programming language Table of Contents In Lesson 1, “Creating Your First Android App,” you download the tools used by any Android application developer and use them to create your first Android app. You learn how to run it using an emulator as well as how to run it on your own device. In Lesson 2, “Building the User Interface,” you learn to create a user interface by using the visual tools and the underlying XML. This covers views, resources, and even the efficient use of ListView. In Lesson 3, “Creating More Screens,” you advance your Android knowledge with an improved understanding of Activities and Fragments, two classes core to creating Android apps, and then learn to take advantage of the Android support library, allowing your app to run on a wide range of Android versions. Lesson 4, “Running in the Background the Simple Way,” shows you how to keep your applications efficient and responsive by utilizing an AsyncTask to perform long-running tasks in the background. Sometimes you need to perform tasks that aren't directly tied into the UI, and that's when services and broadcast receivers come into play. Lesson 5, “Interacting with a Service,” rounds off this knowledge with an understanding of Android's excellent notification system. What app doesn't make use of saving and retrieving data? In Lesson 6, “Saving Simple Data,” you learn two of the most common mechanisms for doing this, including working with SharedPreferences as well as the file system. After maturing for years, Android has become a robust platform where enhancing your user interface is vital to standing out. In Lesson 7, “Enhancing Your User Interface,” you learn to utilize styles, themes, and custom animations. In Lesson 8, “Rounding out Your Knowledge,” you learn to use Android Studio much more efficiently, taking advantage of shortcuts and live templates. Then you submit an application to Google Play to share with the world.More Essential Android App Development7+ Hours of Video InstructionMore Essential Android App Development LiveLessons is a continuation of Essentials of Android Application Development, taking a deeper look at Android topics and covering features that are vital to developing excellent Android applications.Description In this video training, Ian starts with message loop and threading. He then focuses on Android's sensor architecture, showing how to use the light sensor, how to determine linear acceleration, and even how to batch sensor events for efficiency. Continuing on, Ian covers SQLite databases for both direct use and use in the implementation of a ContentProvider. After that comes integration with Google Play Services, showing how to use maps and location data. Building basic custom views and then more advanced custom views follows, and the final lesson covers powerful but easy uses of RenderScript. After watching this video series, developers will be able to create advanced Android apps using a variety of features.Skill LevelAll LevelsWhat You Will LearnHandle threading and communicating across threadsEfficiently use a variety of sensorsCreate and query SQLite databasesImplement custom ContentProvidersIntegrate with Google Play Services for maps and location dataBuild basic custom viewsDevelop advanced custom viewsModify images with RenderScriptWho Should Take This CourseDevelopers who need to quickly learn advanced techniques for Android application developmentCourse RequirementsFamiliarity with the Java programming languageBasic understanding of Android application development Table of ContentsLesson 1, “Working with Message Loop and Threading,” covers Android's message loop and how to correctly use threading. This lesson shows how to use thread pools and executors and how to build custom handler objects for communicating across threads. Lesson 2, “Using Sensors,” looks at Android's sensor framework and how to efficiently use it. This lesson goes over all the sensors available as well as shows detailed usage of the light sensor and linear accelerometer. It also explains how to use batch readings for more efficiency. Lesson 3, “Using SQLite Databases,” explains how to use SQLite databases for storage and retrieval needs in an Android app. The lesson looks at the concepts and then covers implementation of creating a database and querying it. Lesson 4, “Getting Started with ContentProviders,” shows how to create a custom ContentProvider, which allows communicating data across Android apps in a structured way. It also explains how to use a custom ContentProvider from another app. Lesson 5, “Integrating Google Play Services,” breaks down the complexities of Google Play Services. This lesson shows how to use Google Play Services for displaying interactive maps with custom markers and how to query for device location with or without the use of a map. Lesson 6, “Building Basic Custom Views,” tackles the challenging task of building a custom view. It covers the important concepts to understand when developing a view and then shows the implementation of measuring, layout, and drawing in a custom view. Lesson 7, “Learning Advanced Custom Views,” dives into the more challenging aspects of custom views. This lesson explains how to use advanced drawing techniques, handle touch interactions, respond to gestures, and support custom view attributes. Lesson 8, “Modifying Images with RenderScript,” covers real-world uses for RenderScript. This lesson starts with an explanation of RenderScript and then shows how to blur images efficiently. It finishes with how to use advanced convolution to modify images in complex ways easily.About LiveLessons Video Training LiveLessons Video Training series publishes hundreds of hands-on, expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. This professional and personal technology video series features world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, IBM Press, Pearson IT Certification, Prentice Hall, Sams, and Que. Topics include: IT Certification, Programming, Web Development, Mobile Development, Home and Office Technologies, Business and Management, and more. View all LiveLessons on InformIT at: http://www.informit.com/livelessons
  1. The Essentials of Android Application Development
    • Introduction 00:01:36
  2. Lesson 1: Creating Your First Android App
    • Learning Objectives 00:00:59
    • 1.1 Install Android Studio 00:05:38
    • 1.2 Set up an emulator 00:12:22
    • 1.3 Set up a device 00:03:34
    • 1.4 Create a hello world app 00:24:22
  3. Lesson 2: Building the User Interface
    • Learning Objectives 00:01:03
    • 2.1 Add simple views to a layout 00:23:42
    • 2.2 Reference Android resources 00:20:12
    • 2.3 Use a ListView quickly 00:33:37
    • 2.4 Use the view holder pattern 00:09:12
  4. Lesson 3: Creating More Screens
    • Learning Objectives 00:01:16
    • 3.1 Create and launch Activities 00:24:49
    • 3.2 Transition to Fragments 00:26:52
    • 3.3 Build additional Fragments 00:14:17
    • 3.4 Use the support library and ViewPager 00:34:12
  5. Lesson 4: Running in the Background the Simple Way
    • Learning Objectives 00:01:15
    • 4.1 Run an AsyncTask--Part 1 00:18:30
    • 4.2 Run an AsyncTask--Part 2 00:23:06
  6. Lesson 5: Interacting with a Service
    • Learning Objectives 00:01:31
    • 5.1 Create and start a service 00:09:56
    • 5.2 Use an IntentService 00:11:11
    • 5.3 Communicate with a BroadcastReceiver--Part 1 00:05:55
    • 5.4 Communicate with a BroadcastReceiver--Part 2 00:10:02
    • 5.5 Display a system notification 00:23:29
  7. Lesson 6: Saving Simple Data
    • Learning Objectives 00:00:54
    • 6.1 Store data in SharedPreferences 00:10:35
    • 6.2 Use the file system 00:14:14
  8. Lesson 7: Enhancing Your User Interface
    • Learning Objectives 00:01:11
    • 7.1 Extend the application's theme—Part 1 00:13:00
    • 7.2 Extend the application's theme—Part 2 00:12:44
    • 7.3 Animate the views 00:12:59
    • 7.4 Animate the transitions 00:12:31
  9. Lesson 8: Rounding Out Your Knowledge
    • Learning Objectives 00:00:47
    • 8.1 Become efficient with Android Studio 00:12:06
    • 8.2 Submit to the Google Play Store 00:23:30
  10. Summary
    • Summary of Essentials of Android App Development 00:01:04
  11. More Essentials of Android App Development
    • Introduction 00:01:39
  12. Lesson 1: Working with Message Loop and Threading
    • Learning objectives 00:00:52
    • 1.1 Understand threading and synchronization 00:14:02
    • 1.2 Use thread pools and executors 00:11:09
    • 1.3 Create a custom handler and handle message objects 00:30:29
  13. Lesson 2: Using Sensors
    • Learning objectives 00:01:14
    • 2.1 Understand general sensor concepts 00:09:04
    • 2.2 Set up the sensor code 00:13:42
    • 2.3 Read from light sensor 00:04:28
    • 2.4 Determine the linear acceleration 00:11:01
    • 2.5 Use batch sensor readings 00:09:48
  14. Lesson 3: Using SQLite Databases
    • Learning objectives 00:00:58
    • 3.1 Understand SQLite databases 00:05:46
    • 3.2 Create a SQLite database 00:16:28
    • 3.3 Query a SQLite database, part I 00:05:50
    • 3.4 Query a SQLite database, part II 00:27:52
  15. Lesson 4: Getting Started with ContentProviders
    • Learning objectives 00:00:51
    • 4.1 Create a ContentProvider 00:33:01
    • 4.2 Use a ContentProvider 00:27:11
  16. Lesson 5: Integrating Google Play Services
    • Learning objectives 00:00:55
    • 5.1 Understand what Google Play Services is and does 00:18:14
    • 5.2 Display an interactive map, part I 00:11:20
    • 5.3 Display an interactive map, part II 00:12:29
    • 5.4 Locate the device 00:13:14
  17. Lesson 6: Building Basic Custom Views
    • Learning objectives 00:00:56
    • 6.1 Understand view concepts 00:08:09
    • 6.2 Measure and lay out the view 00:13:01
    • 6.3 Draw basic pixels on the canvas 00:13:17
  18. Lesson 7: Learning Advanced Custom Views
    • Learning objectives 00:01:08
    • 7.1 Draw advanced pixels on the canvas 00:12:47
    • 7.2 Handle touches 00:24:54
    • 7.3 Respond to gestures 00:17:54
    • 7.4 Support custom attributes 00:09:16
  19. Lesson 8: Modifying Images with RenderScript
    • Learning objectives 00:01:00
    • 8.1 Understand the use of RenderScript 00:04:06
    • 8.2 Blur an image with RenderScript 00:10:20
    • 8.3 Use convolution for advanced needs 00:12:51
  20. Summary
    • Summary of More Essentials of Android App Development 00:01:11
  21. Oreilly - Essentials of Android App Development and More Essentials

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part01.OR.rar

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part02.OR.rar

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part03.OR.rar

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part04.OR.rar

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part05.OR.rar

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part06.OR.rar

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part07.OR.rar

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part08.OR.rar

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part09.OR.rar

    9780134299723.Essentials.of.Android.App.Development.and.More.Essentials.part10.OR.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss