- What Is the Android SDK and How to Start Using It
- What Is the Android SDK?
- How to Install the Android SDK
- What Is the SDK Manager?
- What Are the Components of the Android SDK?
- Android SDK Tools
- SDK Build Tools
- SDK Platform-Tools
- SDK Platform
- Google APIs
- Android Emulator
- Conclusion
- Premium Android App Templates From CodeCanyon
- What’s New in Android Studio 2.2?
- 1. New Layout Editor
- 2. ConstraintLayout
- Creating Constraints
- Deleting a Constraint
- 3. Firebase Integration
- 4. APK Analyzer
- 5. Samples Browser
- 6. More Java 8 Language Features
- 7. Layout Inspector
- 8. Merged Manifest Viewer
- Conclusion
What Is the Android SDK and How to Start Using It
Android SDK is a software development kit developed by Google for the Android platform. The Android SDK allows you to create Android apps, and you don’t need to be an expert to use it. In this tutorial, I’ll explain what the Android SDK is and how to get started with it.
Android SDK comes bundled with Android Studio, Google’s official integrated development environment (IDE) for the Android operating system. You can learn about Android Studio and the Android App Development Kit in another of my articles.
In this post, we’ll look at:
- What is the Android SDK?
- How to install the Android SDK
- What is the Android SDK Manager?
- What are the components of the Android SDK?
What Is the Android SDK?
The Android SDK is a collection of software development tools and libraries required to develop Android applications. Every time Google releases a new version of Android or an update, a corresponding SDK is also released which developers must download and install. It is worth noting that you can also download and use the Android SDK independently of Android Studio, but typically you’ll be working through Android Studio for any Android development.
The Android SDK comprises all the tools necessary to code programs from scratch and even test them. These tools provide a smooth flow of the development process from developing and debugging, through to packaging.
The Android SDK is compatible with Windows, macOS, and Linux, so you can develop on any of those platforms.
How to Install the Android SDK
The Android SDK is optimized for Android Studio, and hence to effectively reap its benefits, you will need to install Android Studio. Having the Android SDK managed from within Android Studio is easier since support for languages like Java, Kotlin, and C++ is handled automatically. Not only that, but updates to the Android SDK are handled automatically by Android Studio.
To install the Android SDK from within Android Studio, first start Android Studio.
- From the Android Studio start page, select Configure > SDK Manager.
- If you already have Android Studio open, the SDK Manager icon is found on the top right corner, as shown below.
Install the required Android SDK platform packages and developer tools. A good start is to install:
- Android SDK Build-Tools
- Android Emulator
- Android SDK Platform-Tools
- Android SDK Tools
- Documentation for Android SDK
Click Apply, and Android Studio will install the selected tools and packages.
What Is the SDK Manager?
The Android SDK is composed of modular packages that you can download, install, and update separately using the Android SDK Manager. The SDK Manager helps to update new SDK releases and updates whenever a new Android platform is released. The SDK manager can be found in the top-right corner of the Android Studio screen, as shown below.
All that is required to follow the instructions provided, and the updates will be immediately downloaded to your environment.
What Are the Components of the Android SDK?
The Android SDK consists of an emulator, development tools, sample projects with source code, and the required libraries to build Android applications. Let’s look at the key components one by one.
Android SDK Tools
Android SDK Tools is a component of the Android SDK. It includes a complete set of development and debugging tools for Android, and is included with Android Studio. The SDK Tools also consist of testing tools and other utilities required to develop an app.
SDK Build Tools
Build tools are required for building components for building the actual binaries for your Android app. Always ensure your build tools component is up to date by downloading the latest version in the Android SDK Manager.
SDK Platform-Tools
Android Platform-Tools are used to support the features for the current Android platform and are necessary for Android app development. These tools interface with the Android platform on the device you use for testing. They include:
- Android Debug Bridge (adb): This is a handy command-line tool that lets you communicate with a device. The adb command allows you to perform device actions, such as installing and debugging apps. It also provides access to a Unix shell that you can use to run a variety of commands on a device.
- fastboot: This lets you flash a device with a new system image.
- systrace: This tool helps collect and inspect timing information across all processes running on your device at the system level. It’s crucial for debugging app performance.
SDK Platform-Tools are backward compatible, so you need only one version of the SDK Platform-Tools.
SDK Platform
For each version of Android, there’s one SDK Platform available. These are numbered according to the Android version (e.g. Android 7 Nougat) and an API version (e.g. API Level 24). Before you build an Android app, you must specify an SDK Platform as your build target. Newer SDK Platform versions have more features for developers, but older devices may not be compatible with the newer platform versions.
Google APIs
Google provides a number of exclusive Google APIs to make developing your app easier. They also offer a system image for the emulator so you can test your app using the Google APIs.
Android Emulator
The Android Emulator is a QEMU-based device-emulation tool that simulates Android devices on your computer, allowing developers to test applications on different devices and Android API levels, without needing to have physical devices for each. The emulator comes with configurations for various Android phones, tablets, Wear OS, and Android TV devices.
The Android emulator provides almost all of the capabilities of a real Android device. You can perform the following activities:
- simulate phone calls and text messages
- simulate different network speeds
- specify the location of the device
- simulate hardware sensors such as rotation
- access Google Play Store and much more
Often it is faster and easier to test your app with an emulator instead of using a physical device.
Conclusion
In this post, we looked at some of the basics of the Android SDK. The Android SDK is the only way to develop for Android devices. Fortunately, it contains extensive documentation, tutorials, samples, best practice guidance, and an array of tools for many different development tasks.
Premium Android App Templates From CodeCanyon
Android Studio comes with some default templates to help start an app, but these are very basic and provide minimal, generic functionality.
CodeCanyon is an online marketplace that has hundreds of additional templates, which are way more feature-rich and domain-specific too. You can save days, even months, of effort by using one of them.
An Android app template is a great way to jump-start your app project or to learn some new skills by exploring the source code of a professionally made app.
Take a look at some of our roundups of the best Android app templates:
Источник
What’s New in Android Studio 2.2?
The last few months have been an exciting time for Android Studio. First came version 2.1 with support for Android N. Then Google I/O brought us a preview of the next major release in the form of Android Studio 2.2 Preview 1, only for this to be rapidly replaced by Preview 2, which contained some important bug fixes and other improvements.
In this article we’re going to take a closer look at what’s new in Android Studio 2.2. And if you don’t already have the latest Android Studio 2.2 Preview, then now’s the perfect time to grab it from the Canary page.
1. New Layout Editor
One of the most obvious features introduced in Android Studio 2.2 is the new layout editor. In fact, when you first launch Android Studio 2.2 Preview, you might be surprised by just how different the editor looks.
The first neat addition to Android Studio’s layout editor is a blueprint mode that temporarily hides the finer details of your layout, so you’re free to scrutinize the spacing and arrangement of your user interface without any distractions. To see blueprint mode in action, make sure you have Android Studio’s Design tab selected and then click the Show Blueprint icon (where the cursor is positioned in the screenshot below).
Since you have the Design tab selected, you should also notice another new addition to the layout editor, the Properties panel on the right.
Select any view in your layout and the Properties panel will display the most important properties for this particular view, such as its width, contentDescription , and even the view’s contents if you select something like a TextView or ImageView . You can edit all of these properties directly in the Properties panel.
The final new feature that has an important role to play in Android Studio’s revamped layout editor is a bit special. In fact, it is so special that it deserves its own section. I’m talking about ConstraintLayout .
2. ConstraintLayout
ConstraintLayout is a flexible layout manager that was designed especially for Android Studio’s brand new layout editor.
This new layout lets you define the layout of each view based on its relation to other elements in your layout. This means you can create complex user interfaces without having to resort to nesting multiple layouts, which is always bad news for your app’s performance.
If this all sounds a bit familiar, then that’s because ConstraintLayout is fundamentally similar to RelativeLayout . However, ConstraintLayout is more flexible than RelativeLayout , plus it has the added benefit of being designed to work perfectly with Android Studio’s shiny new layout editor.
The secret sauce that could make ConstraintLayout your new favorite layout are constraints. Constraints allow you to dictate how a view is positioned on the screen relative to other user interface elements. For example, connecting the top side of ImageView1 to the bottom of ImageView2 means that ImageView1 always appears below ImageView2 . You can also create constraints between a view and its parent container. For example, you could connect the right side of a TextView to the right edge of its parent ConstraintLayout .
To help you get started, Android Studio 2.2’s New Project wizard uses ConstraintLayout as the default layout for many of its project templates.
To create a new layout resource file that supports ConstraintLayout , create the file as you normally do by right-clicking the Layout directory and selecting New > Layout resource file. Then, open this layout file and set its root to:
Alternatively, you can convert any layout to a ConstraintLayout by opening that layout, making sure Android Studio’s Design tab is selected, right-clicking the layout, and selecting Convert to ConstraintLayout from the context menu that appears.
If you have a project that was created with an older version of Android Studio that you want to update to support ConstraintLayout , then you just need to add the ConstraintLayout library to your project’s module-level build.gradle file:
Once you have a project and a layout resource file that supports ConstraintLayout , you’re ready to start working with constraints.
Creating Constraints
The new layout editor launches with Autoconnect enabled by default, which means Android Studio automatically creates one or more constraints for every view you add to your layout.
To trigger Autoconnect, simply drop a view into a ConstraintLayout and drag that view around. As soon as you release that view, Autoconnect kicks in and creates some constraints with a nice little animated flourish.
Autoconnect is handy for creating some quick constraints, but it does have its limitations. For example, Autoconnect can only create constraints amongst neighboring views.
If Autoconnect doesn’t create the kind of constraint(s) you had in mind, you can always add, remove, or edit constraints manually. If you do decide to go down the manual route, it’s generally easier to disable Autoconnect in advance by selecting the Turn off Autoconnect icon (where the cursor is positioned in the screenshot below).
To create a constraint manually, select the view you want to add the constraint to. You’ll notice small circles appear around the edge of the view. These are the view’s constraint handles.
Hover over the handle where you want to create the constraint, then click and drag. The handle will sprout an arrow, which you can then drag to either:
Another View: Drag the handle towards the second view. When you’re positioned correctly, a Release to create… tooltip will appear. To create your constraint, simply release the handle.
Edge of the Parent ConstraintLayout: Drag the handle towards the edge of the ConstraintLayout . When you see the Release to create…. tooltip, release the handle to finalize the constraint.
If you add opposing constraints to a view, then the view will typically be centered between these two points. The layout editor displays these opposing forces, using jagged lines.
Deleting a Constraint
When it comes to deleting constraints, you have a few options:
Remove All Constraints From a Particular View: Select the view and then click the Delete Constraints icon that appears just beneath that view.
Remove All Constraints From Your Layout: Click the Clear all constraints icon that appears in the little toolbar directly above the Design window.
Delete a Single Constraint: Select the view and then hover over the handle of the constraint you want to delete. When you see the Click to Delete… tooltip, simply give your mouse a click and the constraint will vanish into thin air.
Once you start working with constraints, the Properties panel comes in pretty useful. It allows you to specify the exact size of your constraints.
When you select a view, it appears as a square in the Properties panel with the view’s constraints represented as lines. Each constraint is accompanied by a number that represents the length of that constraint.
You can adjust the length of each constraint by hovering over that constraint’s number until it turns into a drop-down menu. You can then select a new value from that drop-down menu.
If you select a view that has opposing constraints, the Properties panel will also contain a slider that you can use to position the view along the axis of those opposing constraints.
3. Firebase Integration
Firebase is a new suite of services to help you develop high-quality apps that’ll win you a wide and adoring audience. The Android Studio previews introduce Firebase integration, so you can add Firebase services to your project without even having to leave the IDE.
To add Firebase to your project, click Tools > Firebase in the Android Studio toolbar. This opens the new Assistant window. In this window, you can click any feature to see more information about that particular feature, although your first step will typically be to set up Firebase Analytics, as this provides a strong foundation for exploring additional Firebase services.
The best way to get up and running with Firebase Analytics is to click the Get Started with Firebase Analytics link in the Assistant window. This will walk you through the process of connecting your app to Firebase.
4. APK Analyzer
This tool helps you reduce the size of your APK by letting you check the raw file size and estimated download size of each component that makes up your APK. Armed with this information, you can zero in on areas where you could do with losing some excess bytes. The APK Analyzer is also useful for checking that your APK contains everything you’d expect.
To use APK Analyzer, select Build > Analyze APK… followed by the APK you want to take a closer look at. The APK Analyzer output will then appear in the main Android Studio window, ready for you to explore the various components that make up the APK.
5. Samples Browser
If you’ve hit a brick wall in your project, then you can now turn to Android Studio’s samples browser for inspiration. To access this feature, highlight a variable, type, or method in your project, right-click, and select Find Sample Code from the context menu. Android Studio will then search for all the times the highlighted code crops up in Google’s Android code samples and it will display all these matches in an outbox box beneath the main editing window.
6. More Java 8 Language Features
The introduction of the Jack toolchain means you can start using Java 8 features in your Android projects. To enable the Java 8 language features and Jack, open your project’s module-level build.gradle file and add the following:
For more detailed information about the Java 8 features supported in Android Studio, check out the official Android documentation.
7. Layout Inspector
You can use the Layout Inspector to explore and debug a snapshot of your layout as it’s running on an Android Virtual Device (AVD) or a physical Android device. To capture a snapshot, make sure the layout you want to analyze is visible on either your emulator or attached Android device. Next, open Android Studio’s Android Monitor tab along the bottom of the screen and select the Layout Inspector icon.
8. Merged Manifest Viewer
Figuring out how your Manifest merges with your app dependencies across your project build variants is now much easier thanks to the Merged Manifest Viewer in Android Studio 2.2. To access the Merged Manifest Viewer, open your project’s AndroidManifest.xml and select the new Merged Manifest tab.
Conclusion
If the previews are anything to go by, then Android Studio 2.2 is shaping up to be a major step forward for the Android IDE. Even though the new features are likely to change between now and the final release, they’re such a big improvement to Android Studio that it’s well worth investing some time in getting to grips with these new features now.
And, if you do spend some time exploring these previews, then make sure you help the Android Studio team out and report any issues you encounter.
Источник