Advertisement
abhighosh_18

strings.xml

Aug 4th, 2015
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.27 KB | None | 0 0
  1. <resources>
  2.     <string name="app_name">Fragment Modular UI</string>
  3.  
  4.      <string name="action_settings">Settings</string>
  5.  
  6.     <string-array name="titles">
  7.         <item>Activities</item>
  8.         <item>Services</item>
  9.         <item>Content Providers</item>
  10.         <item>Intents and Intent Filters</item>
  11.     </string-array>
  12.    
  13.     <string-array name="descriptions">
  14.         <item>An Activity is an application component that provides a screen with which users can interact in order to do something, such as dial the phone, take a photo, send an email, or view a map. Each activity is given a window in which to draw its user interface. The window typically fills the screen, but may be smaller than the screen and float on top of other windows.</item>
  15.         <item>A Service is an application component that can perform long-running operations in the background and does not provide a user interface. Another application component can start a service and it will continue to run in the background even if the user switches to another application. Additionally, a component can bind to a service to interact with it and even perform interprocess communication (IPC).</item>
  16.         <item>Content providers manage access to a structured set of data. They encapsulate the data, and provide mechanisms for defining data security. Content providers are the standard interface that connects data in one process with code running in another process. When you want to access data in a content provider, you use the ContentResolver object in your application Context to communicate with the provider as a client. The ContentResolver object communicates with the provider object, an instance of a class that implements ContentProvider. The provider object receives data requests from clients, performs the requested action, and returns the results.</item>
  17.         <item>App Widgets are miniature application views that can be embedded in other applications (such as the Home screen) and receive periodic updates. These views are referred to as Widgets in the user interface, and you can publish one with an App Widget provider. An application component that is able to hold other App Widgets is called an App Widget host. The screenshot below shows the Music App Widget.</item>
  18.     </string-array>
  19. </resources>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement