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