Aulas do Curso (86 vídeos)
Welcome to the first video in android tutorial series. In this video we can learn a simple introduction to android. And…
In this episode we are going to install all the needed components for android application development. For start androi…
In this episode we are going to create our first android app using Android studio. Our first android app is an "hello wo…
In this video we are going to learn about how to test an android application using an android virtual device or simply c…
In this video we are going to learn about how to create a simple user interface using android studio layout editor. Her…
In this episode we are going to learn about how to create a new activity in Android Studio. From this video you can als…
In this episode we are going to learn about how to send data to another activity through the intent object. Like my Face…
In this video we are going to learn about how to enable logical parent for an Activity . If there are number of activit…
In this video we can learn about how to create dynamic user interface using fragments. Instead of creating multiple act…
You can add a fragment in two ways 1. Through the XML file 2. Add Fragment at Run Time For add a fragment using XML you…
In this video we are going to learn about how to add remove or replace a fragment at activity run time. Like my Faceboo…
Android system simply destroy all the removed or replaced fragment if you didn't put the fragment transaction to the bac…
In this video we are going to learn about how to establish communication between fragment and activity in android. It is…
In this video we are going to learn about how to establish communication between two fragments. It is not possible for…
In this video we are going to learn about how to use the android framework's Shared Preferences API for saving relativel…
In this video we are going to create a simple Android example application that demonstrate how to use Shared Preferences…
For saving structured and repeated data such as contact information we have a database available in android framework ca…
First step towards android SQLite database is create the database schema and the contract class. Schema is the formal de…
In this video we are going to learn about how to put information into a table available in SQLite database. For put inf…
In this video we are going to learn about how to read data from SQLite database and display it on a Text View. Like my F…
In this video we are going to learn about how to update an existing SQLite database in your android application. Like m…
In this video we are going to learn about how to delete a particular row from android SQLite database. Like my Faceboo…
In this video we are going to learn about Room Data Persistence library. Room work as an Abstract layer over SQLite Data…
In this video we are going to create a simple example application for android Room Database. Like my Facebook page : h…
In this video we are going to learn about how to save data into the Room database in your android application. First yo…
In this video we are going to learn about how to read information from android Room database. Like my Facebook page …
In this video we are going to learn about to delete a particular information from android room database. Like my Faceb…
In this video we are going to learn about how to update a particular information in android room database. Like my Fac…
In this video we are going to learn about how to display list of items using a RecyclerView in your android application.…
In this video we are going to create a little bit complex recycler view, with images and Text on it. Here we are going t…
In this video we are going to learn about how to handle the click events of items on a recycler view. Like my Facebook …
The default theme of every android studio project contain a native action bar. But the Action Bar is deprecated now, so …
In this video we are going to learn about how to add action buttons into the toolbar of your android application. Like …
In this video we are going to learn about how to handle the click events of action buttons available on the toolbar of y…
In this video we are going to learn about how to place an up button on the toolbar, so that the user can move back to th…
In this video we are going to learn about how to place a Search Action View On the toolbar of your android application. …
In this videos we are going to learn about how to filter the contents of a RecyclerView using a Search Action View on th…
In this video we are going to learn about what is the role of permissions while working with an implicit intent. For usi…
In this video we are going to create an android application that demonstrate what is the exact use of explicit and impli…
An android activity goes through different life cycle states during its lifetime. Each life cycle state is represented b…
In this video we are going to create simple android example application that demonstrate in what order the android syste…
We can start an Activity using startActivity method but in some situation we need to start an activity and we expect som…
In this video we are going to learn about how a notification appear on android device. When the notification issued fort…
In this video we are going to learn about how to create an issue a simple notification for android version lower than 8.…
In this video we are going to learn about how to display notifications on android Oreo (Android 8.0) or above. For disp…
In this video we are going to learn about how to open an activity in your android app when the user tap the notification…
This video demonstrate how to add buttons to an android notification and also you can learn about how to respond to noti…
From android 7.0 and above user can directly reply to a notification from the notification drawer without open the app. …
In this video we are going to learn about how to place a progress bar on a notification for displaying the background op…
In this video we are going to learn about how to create an expandable notification in your android app. On a expandable …
In this video we are going to learn about how to create an android notification with custom layouts. For create a cust…
In this video we are going to learn about how to create swipe views in android application. We can create swipe view in…
In this video we are going to create a simple example app that demonstrate how to use the ViewPager widget with TabLayou…
Navigation Drawer in an android widget that display your app's main navigation menus. For adding a Navigation Drawer to…
In this video we are going to learn about how to add menu items to a navigation drawer in your android app. This video a…
In this video we are going to learn about how to add a header layout for the navigation drawer. You can create a separ…
It is a good practice to place an icon for the app drawer on your app bar. If you want your Navigation Drawer to appear …
This video demonstrate how to use Snackbar in your Android Application. You can use Snackbar for display a brief messa…
In this video we are going to learn about how to add an action to a Snackbar. You can add an action by calling the setAc…
The recommended way of creating dialog in your android app is by using a DialogFragment. If you use the DialogFragment…
In this video we are going to learn about how to display an alert dialog with a simple list. For adding a simple list to…
In this video we are going to learn about how to display an android alert dialog with check boxes on it, so that the use…
In this video we are going to learn about how to display a list of items with radio buttons on an android alert dialog. …
In this video we are going to learn about how to create an android dialog with custom layout. You can set your own layou…
In this video we are going to learn about how the dialog passing the events back to the dialog host. To establish commun…
In this video we are going to learn about how to add an options menu into your app bar. The Options menu is where you …
If your app contain more than one activities, you can share the same options menu for all activities by creating a separ…
In this video we are going to learn about how to add or remove options menu items from toolbar / App bar at run time. …
A Floating context menu appear as a floating list of menu items when the user performs a long-click on a view that regis…
In this video we are going to learn about how to integrate a floating context menu with a RecyclerView. When user make…
In this video we are going to learn about how to create the contextual action bar by using the ActionMode callback. T…
In this video we are going to learn about how to implement the contextual action mode with an android listview. When the…
In this video we are going to learn about how to select multiple items from android listview with contextual action mode…
Popup menus are not same as context menu. Context menu applicable for the selected item, but the Popup menu is applicabl…
If camera feature is not the major part of your app, then you can use any other camera application available on your dev…
If your application need a high quality photo from an external camera application then you have to provide a valid file …
In this tutorial we learn about how to capture a video using any available external camera application on the device. We…
In this episode we learn about how to use android Text-To-Speech API in our android application. This API is available f…
In this episode we learn about how to check the status of network into which the device is connected. In many cases you …
In some situation your app needs a settings page. For example you can allow user to change Theme of your app and you can…
In this video we are going to learn about how to create a settings group in your app settings page. You can create a s…
In this episode we learn about how to create sub-screen for your app settings page. You can convert a group of setting…
The Preferences API uses app default shared preference file for saving the user settings. In this episode we learn abo…
There are several situations in which you might want to be notified when user changes a preference in your app settings …
The Preferences API uses the app's default SharedPreference file for saving the settings values. You can access this sha…
In some situations we want to design our app settings page such that the first screen displays only a list of subscreens…
Sobre o Canal
GRATUITO
Cursos Relacionados
Course Preview