YouTube Integration Steps in Android
There are mainly 3 steps to integrate youtube in your Android application. 1) Register Your Application in Google Developer Console 2) Add Dependency for YouTube 3) Android Integration Part 1) Register Your Application in Google Developer Console Go to Google Developer Console https://console.developers.google.com/projectselector/apis/dashboard Login to …
How to stop refreshing fragments on tab change in Android
Problem: How to stop refreshing fragments on tab change You can add multiple fragment tabs in viewpager. But when you swipe tabs, the transition quite slow because of the destruction of the fragment view, which is refreshing during the swipe operation. The viewpager does not create …
Android Studio Installation in Ubuntu
Many of us don’t like to use Ubuntu when we need to install something. You might have some issues while Android Studio Installation in Ubuntu. Here we are to help you. Let’s have a step by step instruction for Android Studio Installation in Ubuntu. 1) …
Lambda Expression in Android Using Java 8
What is Lambda Expressions? Lambda Expressions are one of the most useful features in Java 8. Implementing interface using implement its abstract method is too long, but using Lambda Expressions we can pass functionality directly to an argument to the method. Here are some examples …