2016 - Androhub

Bottom Sheet Banner

Bottom Sheets Dialog in Android

One of the most significant changes to Android design was introduced during the 2014 Google I/O conference, material design. Even though Google had introduced a set of guidelines for their new design philosophy, developers were responsible for implementing the new patterns from scratch. As with many things in software development, the Design support library improved with time, adding support

Read More

Introduction to Android Google Maps V2

Android allows us to integrate google maps in our application. You can show any location on the map , or can show different routes on the map e.t.c. You can also customize the map according to your choices. Prerequisites Location Request Dialog  Marshmallow Permission Example Today we are going to integrate google map in android. The

Read More

Lollipop Activity Transitions

One of the most interesting aspects of the Material Design specifications is the visual continuity between activities. With just a few lines of code, the new Lollipop APIs allow you to meaningfully transition between two activities. This breaks the classic activity boundaries of the previous Android versions and allows the user to understand how elements go from

Read More
Location Dialog Banner

Show Location Setting Dialog Using Google API Client

In Google Maps Android application and many more other applications you had seen that if your Location is disabled then a request location dialog is appearing that directly turn GPS on without redirecting you to Settings page. To achieve this dialog implementation we have to know below things: Google API Client : GoogleApiClient is used with a variety of

Read More
RecyclerView Animation Banner

RecylerView Animation

In earlier tutorials we had learned implementation of RecyclerView. Now in this tutorial we will move to RecyclerView Animation part. The best thing of RecyclerView is that it provide inbuilt animations but the ListView and GridView don’t provide inbuilt animation. Now to implement the Animation in RecyclerView it provide some methods that we need to use: notifyItemRemoved(position)

Read More
Marshmallow Permission Banner

Working with Android Marshmallow 6.0 Permissions

Android Marshmallow 6.0 final stable version is released in October 2015. Android Marshmallow brought some new API changes and one of the most important API change is the addition of new granular permissions. Below is the type of permissions required for Marshmallow Devices: Normal and Dangerous Permissions In Marshmallow these dangerous permissions should be granted

Read More