Team Leader Android Developer

  Home  Computer Programming  Team Leader Android Developer


“Team Leader Android Developer related Frequently Asked Questions by expert members with professional career as Team Leader Android Developer. These list of interview questions and answers will help you strengthen your technical skills, prepare for the new job interview and quickly revise your concepts”



67 Team Leader Android Developer Questions And Answers

29⟩ Explain me Android application Architecture?

Android application architecture has the following components.They are as follows −

Services − It will perform background functionalities

Intent − It will perform the inter connection between activities and the data passing mechanism

Resource Externalization − strings and graphics

Notification − light,sound,icon,notification,dialog box,and toast

Content Providers − It will share the data between applications

 183 views

30⟩ Tell me which dialog boxes can you use in your Android application?

☛ AlertDialog : An alert dialogue box supports 0 to 3 buttons and a list of selectable elements.

☛ ProgressDialog : An extension to AlertDialog and you may add buttons to it. It shows a progress wheel or a progress bar.

☛ DatePickerDialog : It is used for selecting a date by the user.

☛ TimePickerDialog : It is used for selecting time by the user.

 201 views

31⟩ Do you know what is ADB?

ADB stands for Android Debug Bridge. It is a command line tool that is used to communicate with the emulator instance. ADB can control your device over USB from a computer, copy files back and forth, install and uninstall apps, run shell commands, and more. It is a client-server program that includes three components:

• A client, which runs on your development machine. You can invoke a client from a shell by issuing an ADB command. Other Android tools such as DDMS also create ADB clients.

• A server, which runs as a background process on your development machine. The server manages communication between the client and the ADB daemon running on an emulator or device.

• A daemon, which runs as a background process on each emulator or device instance.

 188 views

35⟩ Tell me what is an explicit Intent?

Android Explicit intent specifies the component to be invoked from activity. In other words, we can call another activity in android by explicit intent.

 231 views

36⟩ Explain me what is the difference between a regular .png and a nine-patch image?

It is a resizable bitmap resource that can be used for backgrounds or other images on the device. NinePatch class permits drawing a bitmap in nine sections. The nine patch images have extension as.9.png. It allows extension in 9 ways, i.e. 4 corners that are unscaled, 4 edges that are scaled in 1 axis, and the middle one that can be scaled into both axes.

 198 views