Android Interview Questions – Set 05

Name some exceptions in Android? Inflate Exception Surface.OutOfResourceException SurfaceHolder.BadSurfaceTypeException WindowManager.BadTokenException Where are layouts placed in Android? Layouts in Android are placed in the layout folder. Who is the founder of Android? Andy Rubin. What is nine-patch images tool in Android? We can change bitmap images into nine sections with four corners, four edges, and an … Read more

Android Interview Questions – Set 04

What is NDK? NDK stands for Native Development Kit. By using NDK, you can develop a part of an app using native language such as C/C++ to boost the performance. List the various storages that are provided by Android. The various storage provided by android are: Shared Preferences Internal Storage External Storage SQLite Databases Network … Read more

Android Interview Questions – Set 03

How are view elements identified in the android program? View elements can be identified using the keyword findViewById. What is ADB? ADB stands for Android Debug Bridge. It is a command line tool that is used to communicate with the emulator instance. What is a portable wi-fi hotspot? The portable wi-fi hotspot is used to … Read more

Android Interview Questions – Set 02

What is application Widgets in Android? Application widgets are miniature application views that can be embedded in other applications and receive periodic updates. What is intent? It is a kind of message or information that is passed to the components. It is used to launch an activity, display a web page, send SMS, send email, … Read more

Android Interview Questions – Set 01

What is the implicit intent in android? The Implicit intent is used to invoke the system components. Which kernel is used in Android? Android is a customized Linux 3.6 kernel. What are the life cycle methods of android activity? There are 7 life-cycle methods of activity. They are as follows: onCreate() onStart() onResume() onPause() onStop() … Read more