Advertisement
Guest User

wew

a guest
Mar 29th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. 1. Can we use literal string value for TextView Text property and what will be the effect using literal string text value in the program?
  2.  
  3. If you declare a string as a value for TextView It will display the string value of the String.
  4.  
  5.  
  6. 2. What is the difference between simulator and emulator?
  7.  
  8. Simulator is an environment which we can do trials and testing. And Emulator is a replication of an
  9. Original device or system in another platform.
  10.  
  11.  
  12. 3. State the importance of the following directory and files in android application project.
  13. a. src
  14. b. gen
  15. c. res
  16. d. drawable
  17. e. layout
  18. f. values
  19. g. strings.xml
  20. h. AndroidManifest.xml
  21.  
  22. a) Src contains the src code
  23. b) Gen
  24. c) Res contains the resources used in the application
  25. d) Drawable
  26. e) Layout is the layout of the application which is viewed in the phone or tablet
  27. f) Strings is the name of the application showed on the header or home screen
  28. g) AndroidManifest contains the icon name, label, themes and packages
  29.  
  30. 4. Name at least three mobile platforms and their program language used.
  31.  
  32. iOS – Objective-C And C Which uses the Xcode Platform
  33. Android – Java
  34. Windows Phone – Kernel written in C and Apps and Utils written in C++, XAML and C#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement