Facebook Email not found via Graph API

ByNilesh Deokar

Facebook Email not found via Graph API

While providing Login with facebook option we came across the Graph API. Development goes well with SDK integration and further coding part. But problem arises when we start to realize that we are not getting the Email id of some users. which is either nullRead More

Android Timer and TimerTask scheduling

ByNilesh Deokar

Android Timer and TimerTask scheduling

All you need to do is write a function which will schedule the timerTask and call it in the onCreate(). then manage the activity life cycle with the timer task. public void callAsynchronousTask() { final Handler handler = new Handler(); timer = newRead More

Recyclerview With Multiple view types

ByNilesh Deokar

Recyclerview With Multiple view types

Ever wondered how to implement the multiple view types in recycler view? Method invocation in Recyclerview: 1. Constuctor method 2. getItemViewType() 3. onCreateViewHolder() 4. onBindViewHolder() to achieve the tast all we need to de is implement the  getItemViewType(), And it will take care ofRead More

How to resolve Glide setTag() issue

ByNilesh Deokar

How to resolve Glide setTag() issue

The setTag() is common method for storing data for temporary purpose and utilize it later on. but if you are using Glide lib for image processing purpose then you might not able to use the setTag() function. This is the stack trace.. java.lang.IllegalArgumentException:Read More

How to Implement the new Permission model in Android Marshmallow

ByNilesh Deokar

How to Implement the new Permission model in Android Marshmallow

Android has revised the permission model in the upcoming release i.e. Android M. If we target the app for the Android M then we will have to follow the new Permission Model. Enabling the new permissions model To enable the new M DeveloperRead More