Home
last modified time | relevance | path

Searched refs:as (Results 1 – 25 of 943) sorted by relevance

12345678910>>...38

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccCardApplication.java89 IccCardApplicationStatus as, in UiccCardApplication() argument
92 if (DBG) log("Creating UiccApp: " + as); in UiccCardApplication()
94 mAppState = as.app_state; in UiccCardApplication()
95 mAppType = as.app_type; in UiccCardApplication()
97 mPersoSubState = as.perso_substate; in UiccCardApplication()
98 mAid = as.aid; in UiccCardApplication()
99 mAppLabel = as.app_label; in UiccCardApplication()
100 mPin1Replaced = (as.pin1_replaced != 0); in UiccCardApplication()
101 mPin1State = as.pin1; in UiccCardApplication()
102 mPin2State = as.pin2; in UiccCardApplication()
[all …]
/frameworks/base/docs/html/tools/help/
Dadt.jd50 provides GUI access to many of the command line SDK tools as well as a UI design tool for rapid
67 perspectives, or as a part of background processes ran by ADT.</dd>
71 <dd>The Java programming language editor contains common IDE features such as compile time
107 the Android SDK Manager and AVD Manager. Other <code>android</code> features such as creating or
124 <code>adb</code> are integrated into ADT such as project installation (Eclipse run menu),
126 features of <code>adb</code>, such as shell commands, from the command line.</li>
129 shrinking, and optimization. ADT integrates ProGuard as part of the build, if you <a href=
149 <p class="note"><strong>Note:</strong> You can edit Android-specific XML files (such as a layout
153 …<p>In addition, some special file types that don't have custom editors, such as drawables, animati…
154 and color files offer editing enhancements such as XML tag completion.</p>
[all …]
Dmonkey.jd8 streams of user events such as clicks, touches, or gestures, as well as a number of system-level
17 user events into the system, which acts as a stress test on the application software you are
24 <li>Basic configuration options, such as setting the number of events to attempt.</li>
25 <li>Operational constraints, such as restricting the test to a single package.</li>
85 Level 1 provides more details about the test as it runs, such as individual events being sent to
87 Level 2 provides more detailed setup information such as activities selected or not selected for
101 If not specified, there is no delay and the events are generated as rapidly as possible.</td>
126 (Navigation events consist of up/down/left/right, as input from a directional input device.)</td>
132 (These are navigation events that will typically cause actions within your UI, such as
139 (These are keys that are generally reserved for use by the system, such as Home, Back, Start Call,
[all …]
/frameworks/base/docs/html/sdk/installing/
Dstudio-layout.jd30 you edit the XML file as text, and the <strong>Design</strong> view. Just click the
46 <img src="{@docRoot}images/tools/as-preview-icon.png" style="vertical-align:bottom;margin:0;height:…
47 and choose the desired device, such as Nexus 4:</p>
49 <img src="{@docRoot}images/tools/as-preview-chrome.png" alt="" />
63 <p>For example, suppose you are adding a button, and you misspell it as &quot;Buttonn&quot;.
64 Android Studio helps you to correct it by displaying an error such as the following,
67 <img src="{@docRoot}images/tools/as-error.png" alt="" />
73 auto-complete suggestions as you type. Once it becomes clear that you are adding a fragment,
78 <img src="{@docRoot}images/tools/as-frag-ex.png" alt="" />
85 <img src="{@docRoot}images/tools/as-theme-icon.png" style="vertical-align:bottom;margin:0;height:19…
[all …]
Dstudio-debug.jd57 <img src="{@docRoot}images/tools/as-debugdevices.png" alt=""/>
72 <li>Click <strong>Debug</strong> <img src="{@docRoot}images/tools/as-debugbutton.png"
81 instead. Click the ellipsis <img src="{@docRoot}images/tools/as-launchavdm.png"
87 <img src="{@docRoot}images/tools/as-debugwindowbutton.png"
93 <img src="{@docRoot}images/tools/as-debugview.png" alt="" />
160 <li>Start your app as described in <a href="#runDebug">Run your App in Debug Mode</a>.</li>
161 <li>Click <strong>Android</strong> <img src="{@docRoot}images/tools/as-android.png" alt=""
165 <img src="{@docRoot}images/tools/as-restart.png" alt=""
169 <img src="{@docRoot}images/tools/as-ddmslog.png" alt="" />
184 Process</strong> <img src="{@docRoot}images/tools/as-currentproc.png" alt=""
[all …]
Dcreate-project.jd5 <p>Android Studio makes it easy to create Android apps for several form factors, such as phone,
30 <p>The next window lets you select the form factors supported by your app, such as phone, tablet,
38 as shown in Figure 2. Click on an API level to see a list of features introduced in the correspondi…
40 your apps needs, so you can reach as many devices as possible. Then click <strong>OK</strong>.</p>
50 <p>The next screen lets you select an activity type to add to your app, as shown in Figure 4.
61 <p>The next screen lets you configure the activity to add to your app, as shown in Figure 6.</p>
74 each of them, as shown in Figure 7.</p>
/frameworks/base/docs/html/training/keyboard-input/
Dindex.jd21 <p>The Android system shows an on-screen keyboard&mdash;known as a
24 about the type of input you expect (such as
25 whether it's a phone number or email address) and how the input method should behave (such as
39 <dd>Learn how to show certain soft input methods, such as those designed for phone numbers, web
41 as spelling suggestion behavior and action buttons such as <b>Done</b> or <b>Next</b>.
Dcommands.jd20 <p>When the user gives focus to an editable text view such as an {@link android.widget.EditText}
24 from the {@link android.view.KeyEvent.Callback} interface, such as {@link
31 should generally override the callback methods in your extension of these classes as
44 android.app.Activity#onKeyUp onKeyUp()} as appropriate. Usually, you should
76 <p>To respond to modifier key events such as when a key is combined with Shift or Control, you can
78 provide information about modifier keys such as {@link android.view.KeyEvent#getModifiers()}
80 the exact modifier key you care about is being pressed with methods such as
/frameworks/base/core/java/android/bluetooth/
DBluetoothSocket.java185 BluetoothSocket as = new BluetoothSocket(this); in acceptSocket() local
186 as.mSocketState = SocketState.CONNECTED; in acceptSocket()
191 as.close(); in acceptSocket()
194 as.mSocket = new LocalSocket(fds[0]); in acceptSocket()
195 as.mSocketIS = as.mSocket.getInputStream(); in acceptSocket()
196 as.mSocketOS = as.mSocket.getOutputStream(); in acceptSocket()
197 as.mAddress = RemoteAddr; in acceptSocket()
198 as.mDevice = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(RemoteAddr); in acceptSocket()
199 return as; in acceptSocket()
/frameworks/base/docs/html/training/articles/
Dperf-anr.jd32 stopped responding, such as the dialog
59 level, you can think of responsiveness as a <em>class</em> problem. (Compare
68 <li>No response to an input event (such as key press or screen touch events)
85 <p>Therefore, any method that runs in the UI thread should do as little work
86 as possible on that thread. In particular, activities should do as little as possible to set
87 up in key life-cycle methods such as {@link android.app.Activity#onCreate onCreate()}
89 Potentially long running operations such as network
90 or database operations, or computationally expensive calculations such as
145 as the UI thread by default.</p>
160 as saving a setting or registering a {@link android.app.Notification}. So as with other methods
[all …]
/frameworks/base/libs/usb/tests/AccessoryChat/
DREADME.txt7 This program behaves as if it were a USB accessory.
8 It builds both for the host (Linux PC) and as an android
9 command line program, which will work if run as root on an
/frameworks/native/opengl/specs/
DEGL_ANDROID_recordable.txt39 rendered image as a video each time eglSwapBuffers gets called, may have
81 recorder as indicated by the NATIVE_WINDOW_IS_VIDEO_RECORDER query on
84 Section 3.4.1, Querying Configurations, change the last paragraph as follow
96 1. Should this functionality be exposed as a new attribute or as a bit in
119 One approach involves performing the color space conversion as part of the
125 space conversion when rendering the frame as well as a YUV -> RGB
131 read. The EGLConfig would likely not need to have any caveat set, as using
/frameworks/base/docs/html/
Dlicense.jd13 code modules, as well as sample code, and </li>
18 you as part of the <a href="http://source.android.com">Android Open
28 adhere to the preferred license, there may be exceptions, such as for
34 <p>Third-party components of this site such as JavaScript libraries are included in the Android
39 and as otherwise noted, is licensed under the <a
44 with the specific license that applies to the content, as described
53 content as you see fit. Except as noted in the <a href="#restrictions">Restrictions</a> section
57 it as an audiobook for the visually impaired, or even translate it. </p>
75 <li>In some cases, a page may include content, such as an image, that is not
93 content, as described earlier in this document. The complete
[all …]
Dlegal.jd10 <p>Android is an open platform that's freely available to you as an app developer. You can
16 as a development platform pursuant to our commitment to openness, freedom, and innovation in
29 <p>You may use the word "Android" in a product name only as a descriptor, such as "for Android"
31 messaging, the word "Android" may be used in text as a descriptor, as long as it is followed by a
40 use of it must be attributed as such.</p>
50 that encourage you to take, modify, reuse, re-purpose, and remix the content as you see fit. The
51 documentation content on this web site is made available to you as part of the <a
54 2.0 license</a>. All other content on this site, except the license documents themselves and as
83 also offers your app powerful services such as in-app billing and license verification. In order to
122 href="http://developer.android.com">developer.android.com</a> are subject to their own terms, as
/frameworks/base/docs/html/google/play/billing/
Dindex.jd2 page.metaDescription=In-app Billing lets you sell digital content as one-time purchases or subscrip…
10 content such as media files or photos, virtual content such as game levels or potions, premium serv…
11 and features, and more. You can use In-app Billing to sell products as</p>
17 …f your app is still using In-app Billing v2, please migrate to the v3 API as soon as possible.</li>
30 app-management tasks. It includes the functionality previously known as the
51 any financial transactions. Google Play uses the same checkout backend service as
70 … this section for an overview of the latest version of In-app Billing, as well as implementation d…
/frameworks/base/location/lib/
DREADME.txt7 You can add but not remove. The rules are the same as for the
9 o This library can see and instantiate internal platform classes (such as
14 This library is distributed in the system image, and loaded as
20 Unbundled location providers (such as the NetworkLocationProvider)
/frameworks/base/docs/html/training/
Dbest-performance.jd8 and uses as little battery as possible.</p>
/frameworks/base/docs/html/guide/topics/manifest/
Dsupports-gl-texture-element.jd14 as a way of targeting specific device types, based on GPU platform.</p>
17 Google Play uses <code>&lt;supports-gl-texture&gt;</code> elements as
47 supported texture compression format, specified as the value of a
58 (such as Google Play) or applications can check your application's
59 <code>&lt;supports-gl-texture&gt;</code> declarations as part of handling or
65 compression formats using the same set of well-known strings, as listed below.
66 The set of format strings may grow over time, as needed, and since the values
67 are strings, applications are free to declare other formats as needed.</p>
80 as a descriptor string. Common descriptor values are listed in the table below.
127 GPU, such as Motorola DROID series; Samsung Galaxy S, Nexus S, and Galaxy Tab;
[all …]
Dmeta-data-element.jd25 available to the component as the
31 attribute. However, to assign a resource ID as the value, use the
47 It is highly recommended that you avoid supplying related data as
49 have complex data to associate with a component, store it as a resource and
66 <dd>The value assigned to the item. The data types that can be assigned as values and the Bundle m…
74 &mdash; such as "{@code \\n}" and "{@code \\uxxxxx}" for a Unicode character.</td>
77 <td>Integer value, such as "{@code 100}"</td>
87 <td>Float value, such as "{@code 1.23}"</td>
Dintent-filter-element.jd45 and Intent Filters</a> document, as well as the
54 receiver when that component is presented to the user as having the
58 This attribute must be set as a reference to a drawable resource
74 to the user as having the capability described by the filter.
77 The label should be set as a reference to a string resource, so that
79 However, as a convenience while you're developing the application,
80 it can also be set as a raw string.
106 higher priority values as potential targets for the intent.</li>
121 The value must be an integer, such as "{@code 100}". Higher numbers have a
/frameworks/base/docs/html/training/volley/
Dindex.jd56 <p>Volley excels at RPC-type operations used to populate a UI, such as fetching a page of
57 search results as structured data. It integrates easily with any protocol and comes out of
68 as well as a set of commonly applicable utilities, available in the Volley "toolbox." The
69 easiest way to add Volley to your project is to clone the Volley repository and set it as
80 <li>Import the downloaded source into your app project as an Android library project
81 (as described in <a href="{@docRoot}tools/projects/projects-eclipse.html">
/frameworks/base/docs/html/google/gcm/
Dserver.jd65 Smack</a> demo apps as a starting point.</li>
92 <li>GCM HTTP: 3rd-party app servers send messages as HTTP POST requests and
104 <li>GCM HTTP: JSON messages sent as HTTP POST.</li>
118 <li>Able to handle requests and resend them as needed, using
147 <p>For HTTP you must specify the target as one of:</p>
155 <li>You must specify the target as the &quot;to&quot; field, where the &quot;to&quot;
214 A 3rd-party server can use {@code notification_key} as the target for a message
224 <td>An arbitrary string (such as &quot;Updates Available&quot;) that is used
247 included in the Intent as application data, with the key being the extra's name.
254 (such as integers or booleans), you have to do the conversion to string yourself.
[all …]
/frameworks/base/docs/html/tools/projects/
Dprojects-eclipse.jd36 <li>You can also designate an Android project as a library project, which allows it to be shared
37 with other projects that depend on it. Once an Android project is designated as a library
59 <li>Enter an <strong>Application Name</strong>. This name is used as the title of your
62 <li>Enter a <strong>Project Name</strong>. This text is used as the name of the folder where
66 package structure for your applications code files and is added as the
70 This manifest value serves as the unique identifier for your application app when you
71 distribute it to users. The package name must follow the same rules as packages in the Java
127 as you would a new application project.</p>
140 <li>In the <strong>Configure Project</strong> page, select the <strong>Mark this project as a
141 library</strong> option to flag the project as a library.</li>
[all …]
/frameworks/base/docs/html/training/custom-views/
Doptimizing-view.jd56 it's called as
57 infrequently as possible. Most calls to {@link android.view.View#onDraw onDraw()} are the result of
78 as shallow as
87 to extend {@link android.view.ViewGroup ViewGroup} as part of a custom view. PieChart has child
110 Mobile GPUs are very good at certain tasks, such as scaling, rotating, and translating
111 bitmapped images. They are not particularly good at other tasks, such as drawing lines or curves. To
121 layer type</a> to {@link android.view.View#LAYER_TYPE_HARDWARE}, so that the GPU can cache it as
124 defines the child view as an inner class of {@code PieChart}, which minimizes the amount of code
162 of the application's lifetime, the pie chart is cached as an image, and redrawn at different
167 <p>There is a tradeoff, though. Caching images as hardware layers consumes video memory, which is a
/frameworks/base/docs/downloads/
DREADME3 This directory serves as a "master" repository for various
8 hosting service where they're accessible by users, such as

12345678910>>...38