
Introduction: If we want to use the inbuilt Camera of our device by your application then we have to initiate the Intent for it. By using android.provider.MediaStore class we can easily capture the video. The device Camera application requests video capture using android.provider.MediaStore.ACTION_VIDEO_CAPTURE. To launch the camera there is...

Introduction: ConstraintLayout is a new functionality which comes only in Android Studio 2.2 Preview 3 with the new Layout editor. To create the ConstraintLayout we have to update the AndroidStudio with this new version. To implement the ConstraintLayout first, we check whether Android Support Repository is updated or not,...

The techies out there have been holding their breath eagerly waiting for the Google I/O 2016. It had been a two-day event and filled with interesting and innovative releases. Here are the highlights of the Google I/O 2016 announcements ranging from the latest version of Android N to new features in...

Introduction: Expandable ListView is a widget of Android “android.widget.ExpandableListView”. It is different from simple ListView because here in this feature it shows the two levels of a list, which is easily expanded and collapsed. ExpandableListView is a form of group and the child items. When I click on any...

Introduction: Android Date Picker helps you to select the date with day, month and year in your Layout/User Interface. Android provides you two classes DatePicker and DatePickerDialog to implement the functionality. You can set the date like below: Let’s look into the example on how to implement it. In...