This exception is occurs when we call the network calls in Main Thread. 1) Strict mode: 2) AsynkTask
Long Running process never run on Main Thread.
To solve this problem, having following ways
write this code in your onCreate method
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll()
.build();
StrictMode.setThreadPolicy(policy);
write your code inside doInBackground() method
private class DownloadFilesTask extends AsyncTask<Void, Void, Void> {
protected Long doInBackground(URL... urls) {
// write your code here
return ;
}
};
3) Using Thread
Thread thread = new Thread(new Runnable(){
@Override
public void run() {
try {
//Your code goes here
} catch (Exception e) {
e.printStackTrace();
}
}
});
thread.start();
What are the notifications available in android?
How to Generate signed apk with android studio
What are symmetric and asymmetric encryption in the way Android interacts with the server?
What is ANR? How to avoid and resolve it?
Android Activity FullScreen - How to set activity to fullscreen mode in Android?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
'constructor Handler()' is deprecated. Deprecated in Java, How to use Handler() class in And
What is Context?
Permission denied for window type 2010 in Marshmallow device
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
What is Android Fragments?
ERR_ACCESS_DENIED in Android Webview with sdk 30
Hide/Disable soft keyboard on Activity launch: Android
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
Error: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path
Is There A Way To Get The Source Code From An APK File? (or) How to decompile apk?
How to avoid multiple button click at same time in android?
How to add jar/library files as a dependency in Android studio gradle file
How to get a contact image using a phone number in android?
What is Android?
What is "shared preferences" in Android ?
How To Set Text Color Programmatically Android TextView?
How to install/ uninstall apk by command line ADB
How to convert DP to Pixel and Pixel to Dp?
How to get screen size (width,height) in Android?
How do I check in SQLite whether a table exists?
How can i comment inside xml file in android studio?
How do i load image from drawable folder in Jetpack Compose?
What is NetworkOnMainThread Exception?
How to copy database from assets folder in android using kotlin
Explain Fragment Life Cycle
Check List for Generate Signed APK Android
Intent for Drive PDF Viewer - How to open PDF in Google Drive with intent
How to Exit android app on back pressed?
What happens next when the device switches between portrait and landscape?
How to check Android version?
How to get complete address from latitude and longitude?
Could not inflate Behavior subclass android.support.design.widget. BottomSheetBehavior How resolve
How to validate email address in Android with Kotlin?
Duplicate files during packaging of APK” build.gradle issue: Android Studio