Lines Matching full:application
7 <dt id="apk">.apk file</dt> <dd>Android application package file. Each
8 Android application is compiled and packaged in a single file that
9 includes all of the application's code (.dex files), resources, assets,
10 and manifest file. The application package file can have any name but
12 <code>myExampleAppname.apk</code>. For convenience, an application package
14 <p>Related: <a href="#application">Application</a>.</p>
18 <dd>Compiled Android application code file.
28 for a Web URL, or com.example.rumbler.SHAKE_PHONE for a custom application
34 <dd>A single screen in an application, with supporting Java code, derived
42 <dd>Android Debug Bridge, a command-line debugging application included with the
49 <dt id="application">Application</dt>
50 <dd>From a component perspective, an Android application consists of one
52 source file perspective, an Android application consists of code,
54 are packaged in a single file called an application package file (.apk).
69 application's data to other applications. A content provider is built on
91 <dd>Dalvik Debug Monitor Service, a GUI debugging application included
124 supply, to determine what application/activity receives the Intent and
127 the data, a handling class, and others. An application sends
129 another application/activity. The application can send the Intent to a
130 single target application or it can send it as a broadcast, which can in
141 <dd>A filter object that an application declares in its manifest file, to
143 accept and with what criteria. Through an intent filter, an application
147 application/activity that best matches the Intent and criteria. For more
155 <dd>An application class that listens for Intents that are broadcast,
156 rather than being sent to a single target application/activity. The system
167 <dd>An XML file that each application must define, to describe the
168 application's package name, version, components (activities, intent
190 <dd>Nonprogrammatic application components that are external to the
191 compiled application code, but which can be loaded from application code
193 resource types, but a typical application's resources would consist of UI
195 An application uses resources to efficiently support localization and
196 varied device profiles and states. For example, an application would
202 Assets</a>. The resources of an application are always stored in the
239 application can handle specific URI schemes and strings in any way it
285 <dd>In an Android application, an object derived from the abstract class
290 in your application. </dd>