/development/samples/Alarm/tests/ |
_index.html | 2 This sample is the test application for the <a href="../Alarm/index.html">Alarm</a> 3 sample application. It tests the application's <code>AlarmService</code> service. 6 The test application uses the 15 The application shows how to set up a test application project, 17 file for a test application, and how to set up a test case class for a service. The 35 element that links the test application with the application under test. Specifically, the 48 Android package name for the test application (specified in the manifest file), i [all...] |
/frameworks/base/core/java/android/bluetooth/ |
BluetoothHealthAppConfiguration.java | 24 * The Bluetooth Health Application Configuration that is used in conjunction with 25 * the {@link BluetoothHealth} class. This class represents an application configuration 26 * that the Bluetooth Health third party application will register to communicate with the 39 * @param name Friendly name associated with the application configuration 51 * Constructor to register the application configuration. 53 * @param name Friendly name associated with the application configuration 102 * Return the data type associated with this application configuration. 111 * Return the name of the application configuration. 120 * Return the role associated with this application configuration. 130 * Return the channel type associated with this application configuration [all...] |
/frameworks/base/docs/html/guide/practices/app-design/ |
seamlessness.jd | 24 <p>Even if your application is fast and responsive, certain design decisions can 29 application. In short, you should strive to develop an application that 32 <p>A common seamlessness problem is when an application's background process 35 you are building and testing your application in isolation, on the emulator. 36 However, when your application is run on an actual device, your application may 38 it could end up that your application would display it's dialog behind the 39 active application, or it could take focus from the current application an [all...] |
/frameworks/base/docs/html/guide/practices/ |
seamlessness.jd | 24 <p>Even if your application is fast and responsive, certain design decisions can 29 application. In short, you should strive to develop an application that 32 <p>A common seamlessness problem is when an application's background process 35 you are building and testing your application in isolation, on the emulator. 36 However, when your application is run on an actual device, your application may 38 it could end up that your application would display it's dialog behind the 39 active application, or it could take focus from the current application an [all...] |
optimizing-for-3.0.jd | 64 you to enhance your user's experience on tablets and similar devices. Any application you've already 68 your application looks and works great on the new platform and new device form-factors.</p> 70 <p>This document shows how you can optimize your existing application for Android 3.0 and 71 maintain compatibility with older versions or upgrade your application completely with new APIs.</p> 82 <p>Read this section if you have an existing application and want to 84 manifest file to declare support for Android 3.0, test your application on the new platform, and 88 <p>Read this section if you want to upgrade your application to use APIs introduced in 89 Android 3.0 or create a new application targeted to tablets and similar devices. Compared to 92 application that's fully enhanced for tablets.</p></li> 96 application based on screen configuration</a>.</li [all...] |
/frameworks/base/docs/html/guide/topics/manifest/ |
supports-screens-element.jd | 27 <dd>Lets you specify the screen sizes your application supports and enable <a 29 larger than what your application supports. It's important that you always use this element in your 30 application to specify the screen sizes your application supports. 32 <p>An application "supports" a given screen size if it resizes properly to fill the entire screen. 34 extra work to make your application work on screens larger than a handset device. However, it's 35 often important that you optimize your application's UI for different screen sizes by providing <a 40 <p>However, if your application does not work well when resized to fit different screen sizes, you 42 application should be distributed to smaller screens or have its UI scaled up ("zoomed") to fit 53 android:largestWidthLimitDp}. If you're developing your application for Android 3.2 and higher [all...] |
manifest-element.jd | 25 <dd><code><a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code></dd> 39 contain an <code><a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code> element 50 <dd>A full Java-language-style package name for the application. The name should 61 The package name serves as a unique identifier for the application. 62 It's also the default name for the application process (see the 63 <code><a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code> 65 <code><a href="{@docRoot}guide/topics/manifest/application-element.html#aff">process</a></code [all...] |
service-element.jd | 20 <dd><code><a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code></dd> 28 of the application's components. Unlike activities, services lack a 47 The <code><a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code> element has its own 48 <code><a href="{@docRoot}guide/topics/manifest/application-element.html#enabled">enabled</a></code> attribute that applies to all 49 application components, including services. The 50 <code><a href="{@docRoot}guide/topics/manifest/application-element.html"><application></a></code> and {@code <service>} 60 components of the same application or applications [all...] |
/frameworks/base/docs/html/tools/projects/ |
index.jd | 26 application correctly, so it is highly recommended that you create them with Eclipse and ADT or 33 <dd>An Android project is the container for your application's source code, resource files, and 34 files such as the Ant build and Android Manifest file. An application project is the main type 40 <dd>These projects contain code to test your application projects and are built into 54 generate your project. As your application grows in complexity, you might require new kinds of 60 onto a device. They contain things such as application source code and resource files. 97 Contains application resources, such as drawable files, layout files, and string values. See 98 <a href="{@docRoot}guide/topics/resources/index.html">Application Resources</a> for more 128 <dd>For XML files that define application menus. 136 are processed by aapt and must be referenced from the application using a resourc [all...] |
/development/samples/AliasActivity/ |
AndroidManifest.xml | 17 <!-- Declare the contents of this Android application. The namespace 19 supplies a unique name for the application. When writing your 20 own application, the package name must be changed from "com.example.*" 24 <application android:hasCode="false" android:label="@string/app_label"> 33 </application>
|
/development/samples/LunarLander/ |
AndroidManifest.xml | 17 <!-- Declare the contents of this Android application. The namespace 19 supplies a unique name for the application. When writing your 20 own application, the package name must be changed from "com.example.*" 27 <application android:icon="@drawable/app_lunar_lander" android:label="@string/app_name"> 34 </application>
|
/development/samples/RSSReader/ |
AndroidManifest.xml | 17 <!-- Declare the contents of this Android application. The namespace 19 supplies a unique name for the application. When writing your 20 own application, the package name must be changed from "com.example.*" 25 <application android:label="RSS Reader"> 34 </application>
|
/development/samples/Snake/ |
AndroidManifest.xml | 17 <!-- Declare the contents of this Android application. The namespace attribute 19 name for the application. When writing your own application, the package 33 <application android:icon="@drawable/ic_launcher" android:label="@string/app_name"> 42 </application>
|
/development/samples/StackWidget/ |
AndroidManifest.xml | 17 <!-- Declare the contents of this Android application. The namespace 19 supplies a unique name for the application. When writing your 20 own application, the package name must be changed from "com.example.*" 26 <application android:label="StackWidget"> 38 </application>
|
/development/samples/VoicemailProviderDemo/ |
AndroidManifest.xml | 18 <!-- Declare the contents of this Android application. The namespace 20 supplies a unique name for the application. When writing your 21 own application, the package name must be changed from "com.example.*" 32 <application android:icon="@drawable/icon" android:label="@string/app_name"> 39 </application>
|
/external/nist-sip/java/gov/nist/javax/sip/ |
DialogExt.java | 41 * application layer including those that arrive out of order. This is good for testing 42 * purposes. Validation is delegated to the application and the stack will not attempt to 43 * block requests arriving out of sequence from reaching the application. In particular, the 44 * validation of CSeq and the ACK retransmission recognition are delegated to the application. 45 * Your application will be responsible for error handling of these cases.
|
/external/qemu/distrib/sdl-1.2.15/include/ |
SDL_active.h | 25 * Include file for SDL application focus event handling 40 /** @name The available application states */ 44 #define SDL_APPACTIVE 0x04 /**< The application is active */ 49 * This function returns the current state of the application, which is a 52 * see your application, otherwise it has been iconified or disabled.
|
/frameworks/base/docs/html/guide/faq/ |
framework.jd | 1 page.title=Android Application Framework FAQ 8 application run in a single process?</a></li> 10 an application process?</a></li> 17 <li><a href="#6">How to avoid getting the Application not 19 <li><a href="#7">How does an application know if a package is 26 <h2>Do all the Activities and Services of an application run in a 29 <p>All Activities and Services in an application run in a single process by 38 <h2>Do all Activities run in the main thread of an application 41 <p>By default, all of the application code in a single process runs 54 application?</h2 [all...] |
/frameworks/base/tests/HugeBackup/ |
AndroidManifest.xml | 17 <!-- Declare the contents of this Android application. The namespace 19 supplies a unique name for the application. When writing your 20 own application, the package name must be changed from "com.example.*" 30 <application android:label="Huge Backup" 43 </application>
|
/frameworks/native/opengl/tests/gl2_cameraeye/ |
AndroidManifest.xml | 17 <!-- Declare the contents of this Android application. The namespace 19 supplies a unique name for the application. When writing your 20 own application, the package name must be changed from "com.example.*" 28 <application android:label="@string/gl2cameraeye_name"> 35 </application>
|
/packages/apps/CertInstaller/ |
AndroidManifest.xml | 8 <application android:label="@string/app_name" 20 <data android:mimeType="application/x-x509-ca-cert" /> 21 <data android:mimeType="application/x-x509-user-cert" /> 22 <data android:mimeType="application/x-pkcs12" /> 42 </application>
|
/prebuilts/tools/darwin-x86/sdl/include/SDL/ |
SDL_active.h | 25 * Include file for SDL application focus event handling 40 /** @name The available application states */ 44 #define SDL_APPACTIVE 0x04 /**< The application is active */ 49 * This function returns the current state of the application, which is a 52 * see your application, otherwise it has been iconified or disabled.
|
/prebuilts/tools/linux-x86/sdl/include/SDL/ |
SDL_active.h | 25 * Include file for SDL application focus event handling 40 /** @name The available application states */ 44 #define SDL_APPACTIVE 0x04 /**< The application is active */ 49 * This function returns the current state of the application, which is a 52 * see your application, otherwise it has been iconified or disabled.
|
/prebuilts/tools/windows/sdl/include/SDL/ |
SDL_active.h | 25 * Include file for SDL application focus event handling 40 /** @name The available application states */ 44 #define SDL_APPACTIVE 0x04 /**< The application is active */ 49 * This function returns the current state of the application, which is a 52 * see your application, otherwise it has been iconified or disabled.
|
/sdk/templates/projects/NewAndroidApplication/ |
template.xml | 5 name="New Android Application" 6 description="Creates a new Android application."> 24 name="Application title" 27 default="My Application" /> 34 help="The base user interface theme for the application">
|