
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Azhar has Published 721 Articles

Azhar
342 Views
This example demonstrates how do I find out if the GPS of an Android device is enabled or not.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code ... Read More

Azhar
3K+ Views
This example demonstrates how do I listen for a webview finishing loading a URL in android.Step 1 − Create a new project in Android Studio, go to File ⇒New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. ... Read More

Azhar
4K+ Views
This example demonstrates how do I quit application programmatically in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. Step ... Read More

Azhar
3K+ Views
This example demonstrates how do I display animated gif images in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Add the following dependency in build.gradle: Module: appimplementation 'com.github.bumptech.glide:glide:4.9.0'Step 2 − Add the following ... Read More

Azhar
606 Views
This example demonstrates how do I create a multilevel listView in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. Step 3 ... Read More

Azhar
2K+ Views
This example demonstrates how do I create an animation using XML in an android app.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. ... Read More

Azhar
1K+ Views
This example demonstrates how do I can encode a URL in android.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. ... Read More

Azhar
353 Views
This example demonstrates how do I use the Android Picasso library to download images.Step 1 − Create a new project in Android Studio, go to File ⇒New Project and fill all required details to create a new project.Add the following dependency to the build gradle (Module: app)implementation 'com.squareup.picasso:picasso:2.4.0'Step 2 − ... Read More

Azhar
2K+ Views
This example demonstrates how do I does one Glide to download an image into a bitmap.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new projectAdd the following dependency in build.gradle: Module: appimplementation 'com.github.bumptech.glide:glide:4.9.0'Step 2 ... Read More

Azhar
513 Views
This example demonstrates how do I use Location API in android to track your current location.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Add the following dependency in the build.gradle (Module:app) −implementation 'com.google.android.gms:play-services-maps:17.0.0'Step ... Read More