Home
last modified time | relevance | path

Searched refs:subclass (Results 1 – 25 of 96) sorted by relevance

1234

/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/subclass/
DSubclassTest.java17 package android.test.suitebuilder.examples.subclass;
DSuperclassTest.java17 package android.test.suitebuilder.examples.subclass;
/frameworks/base/docs/html/guide/topics/ui/
Dsettings.jd127 {@link android.app.Fragment} subclass to display the list settings:</p>
146 <p>Every setting for your app is represented by a specific subclass of the {@link
147 android.preference.Preference} class. Each subclass includes a set of core properties that allow you
148 to specify things such as a title for the setting and the default value. Each subclass also provides
175 your own {@link android.preference.Preference} subclass. For help doing so, see the section about <a
188 <p>Each {@link android.preference.Preference} subclass can be declared with an XML element that
250 android.preference.Preference} (and respective subclass) documentation.</p>
617 reasons, but one good reason is to reuse the same subclass of {@link
661 <p class="note"><strong>Note:</strong> When using preference headers, your subclass of {@link
1105 subclass is responsible for saving and restoring its state in case the activity or fragment is
[all …]
/frameworks/base/docs/html/training/contacts-provider/
Ddisplay-contact-badge.jd370 The subclass of {@link android.support.v4.widget.CursorAdapter} that you define must
397 The following code snippet contains an example of a custom subclass of
402 Define the subclass of {@link android.support.v4.widget.CursorAdapter} including its
578 * Instantiates the subclass of
622 (or subclass), and you use a {@link android.support.v4.content.CursorLoader} to load the
Dretrieve-details.jd294 {@link android.provider.ContactsContract.CommonDataKinds} subclass corresponding to the
319 Define the columns you want to retrieve, using the column name constants in the subclass
342 {@link android.provider.ContactsContract.CommonDataKinds} subclass.
/frameworks/base/docs/html/preview/features/
Dtv-recording-api.jd77 <code>TvInputService.RecordingSession</code> subclass and return it
79 fires. This subclass is responsible for switching to the correct channel data,
/frameworks/base/docs/html/training/run-background-service/
Dreport-status.jd95 To receive broadcast {@link android.content.Intent} objects, use a subclass of
96 {@link android.content.BroadcastReceiver}. In the subclass, implement the
/frameworks/base/docs/html/training/basics/network-ops/
Dmanaging.jd215 <code>SettingsActivity</code> is a subclass of {@link
368 // Uses AsyncTask subclass to download the XML feed from stackoverflow.com.
372 // AsyncTask subclass
385 android.content.BroadcastReceiver} subclass, <code>NetworkReceiver</code>. When
Dconnecting.jd96 <code>DownloadWebpageTask</code> class is a subclass of {@link
172 the specified URL to the {@link android.os.AsyncTask} subclass
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
DTestSuiteBuilderTest.java28 import android.test.suitebuilder.examples.subclass.SubclassTest;
/frameworks/base/services/usb/java/com/android/server/usb/
DUsbSettingsManager.java119 public DeviceFilter(int vid, int pid, int clasz, int subclass, int protocol, in DeviceFilter() argument
124 mSubclass = subclass; in DeviceFilter()
226 private boolean matches(int clasz, int subclass, int protocol) { in matches() argument
228 (mSubclass == -1 || subclass == mSubclass) && in matches()
/frameworks/base/docs/html/guide/topics/manifest/
Dinstrumentation-element.jd46 <dd>The name of the {@link android.app.Instrumentation} subclass.
Dprovider-element.jd40 Declares a content provider component. A content provider is a subclass of
88 of the {@link android.content.ContentProvider} subclass that implements the provider
231 <dd>The name of the class that implements the content provider, a subclass of
Dapplication-element.jd97 a subclass of {@link android.app.backup.BackupAgent}. The attribute value should be
258 <dd>The fully qualified name of an Activity subclass that the system
266 subclass implemented for the application. When the application process
271 The subclass is optional; most applications won't need one.
272 In the absence of a subclass, Android uses an instance of the base
Dmanifest-intro.jd236 If you define a subclass, as you almost always would for the component classes
239 the subclass is declared through a {@code name} attribute. The name must include
241 For example, an {@link android.app.Service} subclass might be declared as follows:
272 When starting a component, Android creates an instance of the named subclass.
273 If a subclass isn't specified, it creates an instance of the base class.
Dreceiver-element.jd27 subclass) as one of the application's components. Broadcast receivers enable
118 <dd>The name of the class that implements the broadcast receiver, a subclass of
/frameworks/base/docs/html/guide/topics/text/
Dspell-checker-framework.jd71 A subclass of {@link android.service.textservice.SpellCheckerService}
76 subclass, you must implement the following method:
/frameworks/base/docs/html/training/displaying-bitmaps/
Dprocess-bitmap.jd53 thread and publish the results back on the UI thread. To use it, create a subclass and override the
124 <p>Create a dedicated {@link android.graphics.drawable.Drawable} subclass to store a reference
/frameworks/base/docs/html/training/testing/integration-testing/
Dcontent-provider-testing.jd72 <li>Create your test class as a subclass of {@link android.test.ProviderTestCase2}.</li>
97 You test a provider with a subclass of {@link android.test.ProviderTestCase2}. This base class
/frameworks/base/docs/html/guide/topics/connectivity/usb/
Dhost.jd137 for a specific device and use class, subclass, and protocol if you want to filter for a group
149 <li><code>subclass</code></li>
190 &lt;usb-device vendor-id="1234" product-id="5678" class="255" subclass="66" protocol="1" /&gt;
249 </pre><!-- REMEMBER TO ADD PROTOCOL, and device class and subclass, if applicable -->
/frameworks/base/docs/html/guide/topics/connectivity/
Dsip.jd167 … must also define a receiver ({@link android.content.BroadcastReceiver} subclass) in the applicati…
342 <p>To receive calls, a SIP application must include a subclass of {@link
353 <li>Implement the receiver, which is a subclass of {@link
367 <p>To receive calls, your SIP application must subclass {@link
/frameworks/base/docs/html/guide/topics/admin/
Ddevice-admin.jd285 <li>A subclass of {@link android.app.admin.DeviceAdminReceiver} that includes the following:
334 </code> is a permission that a {@link android.app.admin.DeviceAdminReceiver} subclass must
338 action that a {@link android.app.admin.DeviceAdminReceiver} subclass must handle to be
386 {@link android.app.admin.DeviceAdminReceiver} subclass.</dd>
402 <p>To create a device admin application, you must subclass
406 <p>In its {@link android.app.admin.DeviceAdminReceiver} subclass, the sample application
/frameworks/base/docs/html/guide/topics/ui/controls/
Dradiobutton.jd65 <p class="note"><strong>Note:</strong> The {@link android.widget.RadioGroup} is a subclass of
/frameworks/base/docs/html/guide/topics/resources/
Daccessing-resources.jd52 res/} directory. For each type of resource, there is an {@code R} subclass (for example,
134 <li><em>{@code <resource_type>}</em> is the {@code R} subclass for the resource type.</li>
216 {@code R} subclass for the resource type</li>
/frameworks/base/docs/html/ndk/guides/
Dconcepts.jd187 between the Android framework and your native code, so you do not have to subclass it or call its
248 <p class="note"><strong>Note:</strong> You can subclass {@link android.app.NativeActivity}. If you
249 do, use the name of the subclass instead of {@link android.app.NativeActivity}.</p>

1234