File: package.html

package info (click to toggle)
android-platform-frameworks-base 1%3A10.0.0%2Br36-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 321,788 kB
  • sloc: java: 962,234; cpp: 274,314; xml: 242,770; python: 5,060; sh: 1,432; ansic: 494; makefile: 47; sed: 19
file content (32 lines) | stat: -rw-r--r-- 1,381 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<body>

<p>Contains classes for accessing and publishing data on a device.  It includes three main
categories of APIs:</p>

<ul>
  <dt>Content sharing ({@link android.content})</dt>
  <dd>For sharing content between application components. The most important classes are:
    <ul>
      <li>{@link android.content.ContentProvider} and {@link android.content.ContentResolver}
  for managing and publishing persistent data associated with an application.</li>
      <li>{@link android.content.Intent} and {@link android.content.IntentFilter}, for delivering
  structured messages between different application components&mdash;allowing components to initiate
  other components and return results.</li>
    </ul>
  </dd>

  <dt>Package management ({@link android.content.pm})</dt>
  <dd>For accessing information about an Android package (an {@code .apk}), including information
about its activities, permissions, services, signatures, and providers. The most important class for
accessing this information is {@link android.content.pm.PackageManager}.</dd>

  <dt>Resource management ({@link android.content.res})</dt>
  <dd>For retrieving resource data associated with an application, such as strings, drawables,
media, and device configuration details. The most important class for accessing this data is {@link
android.content.res.Resources}.</dd>
</ul>

</body>
</html>