Asynctask starts with execute() method. Before starting Asynctask background, onPreExecuted() executes first. Usually, people put loading ...
Category Platform
app-debug-unaligned.apk vs. app-debug.apk
When you are trying to make apk file with your code on Android Studio, you will notice that there are two files generated in directory. unaligned ...
HttpURLConnection vs. HttpsURLConnection
A URLConnection with support for HTTP-specific features It can cover Https addresses also, because HttpsURLConnection extends this. ...
Multidex for 64K limit problem
Android app originally designed with limit of 64K methods. As app became bigger, android developer supported multidex for this problem. So to use ...
adb on terminal
In Android/sdk/platform-tools, there is adb call. adb devices able to see connected device on mine, emulator is running as shown adb shell ...
Android File Components
Describes what the application is about activities Android studio auto save the contents to here Best place to check what’s going on the app ...
Architecture Breakdown
Linux Kernel Interacts with Android hardware and contains all the essential hardware drivers. Also provides abstraction layer between software ...
onCreate(), Activity, Bundle
entire lifetime happens between the first call to onCreate(Bundle)through to a single final call to onDestroy() visible lifetime happens between ...
Android Application
Written in Java language They are compiled to Android’s own bytecode format, Dalvik executable(DEX) Doesn’t have a single entry-point, such as ...