1. Trang chủ
  2. » Kinh Doanh - Tiếp Thị

Beginning android programming with android studio

459 33 0

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 459
Dung lượng 16,15 MB

Cấu trúc

  • Cover

  • Title Page

  • Copyright

  • About the Author

  • About the Technical Editor

  • Credits

  • Acknowledgments

  • Contents

  • Introduction

    • Who This Book Is For

    • What This Book Covers

    • How This Book Is Structured

    • What You Need to Use This Book

    • Conventions

    • Source Code

    • Errata

    • P2P.wrox.com

  • Chapter 1: Getting Started with Android Programming

    • What Is Android?

      • Android Versions

      • Features of Android

      • Architecture of Android

      • Android Devices in the Market

      • The Android Market

    • Obtaining the Required Tools

      • Android Studio

      • Android SDK

      • Creating Android Virtual Devices (AVDs)

      • The Android Developer Community

    • Launching Your First Android Application

    • Summary

  • Chapter 2: Using Android Studio for Android Development

    • Exploring the IDE

    • Using Code Completion

    • Debugging Your Application

      • Setting Breakpoints

      • Navigating Paused Code

    • Publishing Your Application

      • Generating a Signed APK

    • Summary

  • Chapter 3: Activities, Fragments, and Intents

    • Understanding Activities

      • Applying Styles and Themes to an Activity

      • Hiding the Activity Title

      • Displaying a Dialog Window

      • Displaying a Progress Dialog

    • Linking Activities Using Intents

      • Returning Results from an Intent

      • Passing Data Using an Intent Object

    • Fragments

      • Adding Fragments Dynamically

      • Life Cycle of a Fragment

      • Interactions Between Fragments

      • Understanding the Intent Object

      • Using Intent Filters

    • Displaying Notifications

    • Summary

  • Chapter 4: Getting to Know the Android User Interface

    • Understanding the Components of a Screen

      • Views and ViewGroups

      • FrameLayout

      • LinearLayout (Horizontal) and LinearLayout (Vertical)

      • TableLayout

      • RelativeLayout

      • FrameLayout

      • ScrollView

    • Adapting to Display Orientation

      • Anchoring Views

    • Managing Changes to Screen Orientation

      • Persisting State Information During Changes in Configuration

      • Detecting Orientation Changes

      • Controlling the Orientation of the Activity

    • Utilizing the Action Bar

      • Adding Action Items to the Action Bar

    • Creating the User Interface Programmatically

    • Listening for UI Notifications

    • Summary

  • Chapter 5: Designing Your User Interface with Views

    • Using Basic Views

      • TextView View

      • Button, ImageButton, EditText, CheckBox, ToggleButton, RadioButton, and RadioGroup Views

      • ProgressBar View

      • AutoCompleteTextView View

    • Using Picker Views

      • TimePicker View

      • DatePicker View

    • Using List Views to Display Long Lists

      • ListView View

      • Using the Spinner View

    • Understanding Specialized Fragments

      • Using a ListFragment

      • Using a DialogFragment

      • Using a PreferenceFragment

    • Summary

  • Chapter 6: Displaying Pictures and Menus with Views

    • Using Image Views to Display Pictures

      • ImageView View

      • ImageSwitcher

      • GridView

    • Using Menus with Views

      • Creating the Helper Methods

      • Options Menu

      • Context Menu

    • Using WebView

      • WebView

    • Summary

  • Chapter 7: Data Persistence

    • Saving and Loading User Preferences

      • Accessing Preferences Using an Activity

      • Programmatically Retrieving and Modifying the Preferences Values

    • Persisting Data to Files

      • Saving to Internal Storage

      • Saving to External Storage (SD Card)

      • Choosing the Best Storage Option

    • Creating and Using Databases

      • Creating the DBAdapter Helper Class

      • Using the Database Programmatically

    • Summary

  • Chapter 8: Content Providers

    • Sharing Data in Android

    • Using a Content Provider

      • Predefined Query String Constants

      • Projections

      • Filtering

      • Sorting

    • Creating Your Own Content Providers

    • Using the Content Provider

    • Summary

  • Chapter 9: Messaging

    • SMS Messaging

      • Sending SMS Messages Programmatically

      • Sending SMS Messages Using Intent

      • Receiving SMS Messages

      • Caveats and Warnings

    • Sending Email

    • Summary

  • Chapter 10: Location-Based Services

    • Displaying Maps

      • Creating the Project

      • Obtaining the Maps API Key

      • Displaying the Map

      • Displaying the Zoom Control

      • Changing Views

      • Navigating to a Specific Location

      • Getting the Location That Was Touched

      • Geocoding and Reverse Geocoding

    • Getting Location Data

    • Monitoring a Location

    • Summary

  • Chapter 11: Networking

    • Consuming Web Services Using HTTP

      • Downloading Binary Data

      • Downloading Text Content

      • Accessing Web Services Using the GET Method

    • Consuming JSON Services

    • Summary

  • Chapter 12: Developing Android Services

    • Creating Your Own Services

      • Performing Long-Running Tasks in a Service

      • Performing Repeated Tasks in a Service

      • Executing Asynchronous Tasks on Separate Threads Using IntentService

    • Establishing Communication Between a Service and an Activity

    • Binding Activities to Services

    • Understanding Threading

    • Summary

  • Appendix: Answers to Exercises

    • Chapter 1 Answers

    • Chapter 2 Answers

    • Chapter 3 Answers

    • Chapter 4 Answers

    • Chapter 5 Answers

    • Chapter 6 Answers

    • Chapter 7 Answers

    • Chapter 8 Answers

    • Chapter 9 Answers

    • Chapter 10 Answers

    • Chapter 11 Answers

    • Chapter 12 Answers

  • Index

  • EULA

Nội dung

Getting Started with Android Programming

Android Devices in the Market 4

Creating Android Virtual Devices (AVDs) 15

Launching Your First Android Application 24Summary 26

Using Android Studio for Android Development

Activities, Fragments, and Intents

Applying Styles and Themes to an Activity 53

Returning Results from an Intent 66

Passing Data Using an Intent Object 70 Fragments 75

Getting to Know the Android User Interface

Understanding the Components of a Screen 102

FrameLayout 104 LinearLayout (Horizontal) and LinearLayout (Vertical) 104 TableLayout 114 RelativeLayout 116 FrameLayout 117 ScrollView 121 Adapting to Display Orientation 124

Managing Changes to Screen Orientation 127 Persisting State Information During Changes in Configuration 131

Designing Your User Interface with Views

Button, ImageButton, EditText, CheckBox, ToggleButton, RadioButton, and RadioGroup Views 149 xiii contents

Using List Views to Display Long Lists 175

Displaying Pictures and Menus with Views

Using Image Views to Display Pictures 203

Data Persistence

Saving and Loading User Preferences 232

Accessing Preferences Using an Activity 232

Programmatically Retrieving and Modifying the Preferences Values 242

Saving to External Storage (SD Card) 250

Choosing the Best Storage Option 253

Creating the DBAdapter Helper Class 254

Content Providers

Messaging

Sending SMS Messages Programmatically 298 Sending SMS Messages Using Intent 302

Location-Based Services

Obtaining the Maps API Key 326

Navigating to a Specific Location 333 Getting the Location That Was Touched 335

Networking

Consuming Web Services Using HTTP 352

Accessing Web Services Using the GET Method 364 xv contents

Developing Android Services

Performing Long-Running Tasks in a Service 386

Performing Repeated Tasks in a Service 391

Executing Asynchronous Tasks on Separate

Establishing Communication Between a Service and an Activity 397

I began exploring the Android Software Development Kit (SDK) before its official launch at version 0.8, during a time when the tools were still rough, the application programming interfaces (APIs) were inconsistent, and the documentation was limited Today, Android has evolved into one of the most widely used mobile operating systems globally.

Every day, an increasing number of developers are exploring Android development with Android Studio, whether as a hobby or a career For many beginners eager to enter the dynamic realm of Android development, the primary challenge is figuring out the best starting point.

Motivated by the challenge of supporting new Android programmers, I wrote this book to help them develop increasingly sophisticated applications.

This book is designed to kickstart the journey of beginner Android developers by presenting essential topics in a structured format, allowing for gradual knowledge building without information overload Emphasizing a hands-on learning approach, each chapter includes "Try It Out" sections that guide you in creating projects, followed by "How It Works" segments that clarify the underlying concepts Additionally, this revised edition incorporates reader feedback and introduces new topics crucial for novice Android developers.

This book aims to introduce you to the fundamentals of Android programming, explain the architecture of the SDK, and clarify the reasoning behind various practices While it cannot cover every aspect of Android programming, it will prepare you to confidently face your next programming challenge after completing the exercises provided.

Who thIs Book Is For

This book is designed for beginner Android developers eager to create applications using Google’s Android SDK A basic understanding of programming and familiarity with object-oriented programming (OOP) concepts are essential for maximizing the benefits of this book If you're new to Java, the primary language for Android development, consider taking a Java programming course or exploring recommended Java programming books Those with a background in C# or VB.NET will find that transitioning to Java is relatively easy and can follow along with the practical exercises provided.

If you're new to programming and eager to create mobile apps for profit, it's essential to first grasp the fundamentals of programming before diving into practical examples Starting with a solid understanding of programming basics will better prepare you for success in app development.

This book's examples were created and tested with Android SDK version N (Nougat) on Android Studio 2 previews (1 to 6) While we strive to use the most current tools, newer versions may be released by the time you read this, leading to potential differences in instructions or screenshots Nevertheless, any discrepancies should be easily manageable.

This book covers the fundamentals of Android programming using the Android SDK It is divided into 12 chapters and one appendix.

➤ Chapter 1: Getting Started with Android Programming covers the basics of the Android

The current state of the Android operating system showcases its versatile features and a wide range of popular devices available in the market This article guides you through the process of downloading and installing Android Studio, the essential tool for developing Android applications Additionally, it provides insights on testing your applications using the Android emulator, ensuring a seamless development experience.

Chapter 2: Using Android Studio for Android Development provides an overview of the various components within Android Studio, the Integrated Development Environment (IDE) for Android app development This chapter guides you through the essential features of the IDE and concludes with instructions on how to publish your completed application.

Chapter 3 introduces the essential concepts of Activities, Fragments, and Intents in Android programming Activities and fragments serve as the foundational elements of Android applications This chapter explains how to connect activities to create a cohesive Android application using intents, which are a distinctive feature of the Android operating system.

Chapter 4: Understanding the Android User Interface explores the essential components that constitute the UI of an Android application This chapter introduces different layouts available for designing your app's interface and explains the various events triggered by user interactions with the application.

Chapter 5: Designing Your User Interface with Views introduces essential views for constructing your Android UI, focusing on three primary categories: basic views, picker views, and list views Additionally, it covers the specialized fragments introduced in Android versions 3.0 and 4.0, enhancing your understanding of UI design.

➤ Chapter 6: Displaying Pictures and Menus with Views continues the exploration of views

This section covers the methods for displaying images through different image views, along with options for display and context menus within your application Additionally, it concludes with a selection of innovative views to enhance the visual appeal of your app.

Chapter 7: Data Persistence explores methods for saving and storing data within your Android application This chapter introduces various techniques for user data storage, including file manipulation and the ability to save files to both internal and external storage, such as SD cards Additionally, it covers the creation and utilization of a SQLite database to enhance data management in your app.

➤ Chapter 8: Content Providers discusses how data can be shared among different applications on an Android device You see how to use a content provider and then build one yourself

Ngày đăng: 26/09/2021, 20:14