HomeSort by relevance Sort by last modified time
    Searched full:link (Results 301 - 325 of 18913) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/widget/
HeterogeneousExpandableList.java 24 * {@link ExpandableListAdapter} take advantage of the {@link Adapter} view type
27 * An {@link ExpandableListAdapter} declares it has one view type for its group items
28 * and one view type for its child items. Although adapted for most {@link ExpandableListView}s,
29 * these values should be tuned for heterogeneous {@link ExpandableListView}s.
33 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)}
35 * {@link android.widget.ExpandableListAdapter#getChildView(int, int, boolean, View, ViewGroup)}
42 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)}
48 * {@link android.widget.ExpandableListAdapter#getGroupView(int, boolean, View, ViewGroup)}
49 * . Note: Integers must be in the range 0 to {@link #getGroupTypeCount} - 1
    [all...]
  /frameworks/base/docs/html/training/sharing/
shareaction.jd 3 parent.link=index.html
7 previous.link=receive.html
31 <p>Implementing an effective and user friendly share action in your {@link android.app.ActionBar}
32 is made even easier with the introduction of {@link android.view.ActionProvider} in Android 4.0
33 (API Level 14). An {@link android.view.ActionProvider}, once attached to a menu item in the action
34 bar, handles both the appearance and behavior of that item. In the case of {@link
37 <p class="note"><strong>Note:&nbsp;</strong> {@link android.widget.ShareActionProvider} is available
44 <strong>Figure 1.</strong> The {@link android.widget.ShareActionProvider} in the Gallery app.
50 <p>To get started with {@link android.widget.ShareActionProvider ShareActionProviders}, define the <code>android:actionProviderClass</code> attribute for the corresponding <code>&lt;item&gt;</code> in your <a href="{@docRoot}guide/topics/resources/menu-resource.html">menu resource</a> file:</p>
63 {@link android.widget.ShareActionProvider}. However, you will need to tell the provider what you
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothAdapter.java 45 * Represents the local device Bluetooth adapter. The {@link BluetoothAdapter}
48 * instantiate a {@link BluetoothDevice} using a known MAC address, and create
49 * a {@link BluetoothServerSocket} to listen for connection requests from other
52 * <p>To get a {@link BluetoothAdapter} representing the local Bluetooth
54 * static {@link #getDefaultAdapter} method; when running on JELLY_BEAN_MR2 and
56 * {@link android.content.Context#getSystemService} with
57 * {@link android.content.Context#BLUETOOTH_SERVICE}.
60 * {@link BluetoothDevice} objects representing all paired devices with
61 * {@link #getBondedDevices()}; start device discovery with
62 * {@link #startDiscovery()}; or create a {@link BluetoothServerSocket} t
    [all...]
  /external/libnfc-nci/src/nfc/int/
llcp_int.h 32 ** LLCP link states
36 LLCP_LINK_STATE_DEACTIVATED, /* llcp link is deactivated */
37 LLCP_LINK_STATE_ACTIVATED, /* llcp link has been activated */
38 LLCP_LINK_STATE_DEACTIVATING /* llcp link is deactivating */
55 ** LLCP link control block
59 tLLCP_LINK_STATE link_state; /* llcp link state */
60 tLLCP_LINK_CBACK *p_link_cback; /* callback function to report llcp link status */
71 UINT16 peer_miu; /* link MIU of peer device */
73 UINT16 peer_lto; /* link timeout of peer device in ms */
76 TIMER_LIST_ENT timer; /* link timer for LTO and SYMM response *
    [all...]
  /frameworks/base/docs/html/training/basics/activity-lifecycle/
recreating.jd 3 parent.link=index.html
7 previous.link=stopping.html
35 calling {@link android.app.Activity#finish()}. The system may also destroy your activity if it's
40 itself, the system's concept of that {@link android.app.Activity} instance is gone forever because
43 {@link android.app.Activity} instance is gone, the system remembers that it existed such that if
47 key-value pairs stored in a {@link android.os.Bundle} object.</p>
54 <p>By default, the system uses the {@link android.os.Bundle} instance state to save information
55 about each {@link android.view.View} object in your activity layout (such as the text value entered
56 into an {@link android.widget.EditText} object). So, if your activity instance is destroyed and
68 the {@link android.app.Activity#onSaveInstanceState onSaveInstanceState()} callback method
    [all...]
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
AsyncTask.java 59 * <p>AsyncTask is designed to be a helper class around {@link Thread} and {@link Handler}
63 * provided by the <code>java.util.concurrent</code> pacakge such as {@link Executor},
64 * {@link ThreadPoolExecutor} and {@link FutureTask}.</p>
81 * one method ({@link #doInBackground}), and most often will override a
82 * second one ({@link #onPostExecute}.)</p>
125 * simply use the type {@link Void}:</p>
133 * <li>{@link #onPreExecute()}, invoked on the UI thread immediately after the task
136 * <li>{@link #doInBackground}, invoked on the background threa
    [all...]
  /frameworks/base/core/java/android/os/
AsyncTask.java 39 * <p>AsyncTask is designed to be a helper class around {@link Thread} and {@link Handler}
43 * provided by the <code>java.util.concurrent</code> pacakge such as {@link Executor},
44 * {@link ThreadPoolExecutor} and {@link FutureTask}.</p>
61 * one method ({@link #doInBackground}), and most often will override a
62 * second one ({@link #onPostExecute}.)</p>
105 * simply use the type {@link Void}:</p>
113 * <li>{@link #onPreExecute()}, invoked on the UI thread before the task
116 * <li>{@link #doInBackground}, invoked on the background threa
    [all...]
BatteryManager.java 21 * in the {@link android.content.Intent#ACTION_BATTERY_CHANGED} Intent.
25 * Extra for {@link android.content.Intent#ACTION_BATTERY_CHANGED}:
31 * Extra for {@link android.content.Intent#ACTION_BATTERY_CHANGED}:
37 * Extra for {@link android.content.Intent#ACTION_BATTERY_CHANGED}:
43 * Extra for {@link android.content.Intent#ACTION_BATTERY_CHANGED}:
45 * {@link #EXTRA_SCALE}.
50 * Extra for {@link android.content.Intent#ACTION_BATTERY_CHANGED}:
56 * Extra for {@link android.content.Intent#ACTION_BATTERY_CHANGED}:
63 * Extra for {@link android.content.Intent#ACTION_BATTERY_CHANGED}:
71 * Extra for {@link android.content.Intent#ACTION_BATTERY_CHANGED}
    [all...]
  /frameworks/base/docs/html/training/contacts-provider/
retrieve-details.jd 50 {@link android.provider.ContactsContract.Contacts} row for a contact the user has picked.
57 {@link android.provider.ContactsContract.Data} table for any rows that contain the contact's
58 {@link android.provider.ContactsContract.Data#LOOKUP_KEY}. This column is available in
59 the {@link android.provider.ContactsContract.Data} table, because the Contacts
60 Provider makes an implicit join between the {@link android.provider.ContactsContract.Contacts}
61 table and the {@link android.provider.ContactsContract.Data} table. The
62 {@link android.provider.ContactsContract.Contacts#LOOKUP_KEY} column is described
68 {@link android.provider.ContactsContract.Data} table. Consider the performance impact before
74 {@link android.Manifest.permission#READ_CONTACTS READ_CONTACTS} permission.
88 {@link android.provider.ContactsContract.Data#_ID Data._ID} if you're binding the resul
    [all...]
  /frameworks/base/docs/html/training/custom-views/
custom-drawing.jd 3 parent.link=index.html
7 previous.link=create-view.html
9 next.link=making-interactive.html
44 <p>The most important step in drawing a custom view is to override the {@link
45 android.view.View#onDraw(android.graphics.Canvas) onDraw()} method. The parameter to {@link
46 android.view.View#onDraw(android.graphics.Canvas) onDraw()} is a {@link
47 android.graphics.Canvas Canvas} object that the view can use to draw itself. The {@link
51 {@link
54 <p>Before you can call any drawing methods, though, it's necessary to create a {@link
56 object. The next section discusses {@link android.graphics.Paint Paint} in more detail.</p
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
ReferenceMap.java 33 * see {@link java.lang.ref.Reference}.
46 * This {@link java.util.Map} implementation does <i>not</i> allow null elements.
50 * You can use {@link java.util.Collections#synchronizedMap} to
87 * must be {@link #HARD}, {@link #SOFT}, {@link #WEAK}
89 * must be {@link #HARD}, {@link #SOFT}, {@link #WEAK}
100 * must be {@link #HARD}, {@link #SOFT}, {@link #WEAK
    [all...]
  /frameworks/base/docs/html/guide/topics/processes/
process-lifecycle.jd 17 (in particular {@link android.app.Activity}, {@link android.app.Service},
18 and {@link android.content.BroadcastReceiver}) impact the lifetime
24 {@link android.content.BroadcastReceiver} that starts a thread when it
25 receives an Intent in its {@link android.content.BroadcastReceiver#onReceive
32 is to start a {@link android.app.Service} from the BroadcastReceiver, so the
47 <li> It is running an {@link android.app.Activity}
49 {@link android.app.Activity#onResume} method has been called).</li>
50 <li> It has a {@link android.content.BroadcastReceiver} that is currently running
51 (its {@link android.content.BroadcastReceiver#onReceive
    [all...]
  /libcore/luni/src/main/java/javax/xml/validation/
TypeInfoProvider.java 25 * by {@link ValidatorHandler}.
35 * {@link ValidatorHandler#getTypeInfoProvider()} method.
54 * <p>Returns the immutable {@link TypeInfo} object for the current element.</p>
58 * the {@link org.xml.sax.ContentHandler} that the application sets to the
59 * {@link ValidatorHandler}.</p>
62 * If this method is called from other {@link org.xml.sax.ContentHandler}
65 * An immutable {@link TypeInfo} object that represents the
68 * {@link TypeInfo} longer than the callback scope.
80 * Returns the immutable {@link TypeInfo} object for the specified
85 * the {@link org.xml.sax.ContentHandler} that the application sets to th
    [all...]
Schema.java 30 * A {@link Schema} object is thread safe and applications are
34 * A {@link Schema} object is immutable in the sense that it shouldn't
37 * {@link Schema}, it must always produce the same result.
40 * A {@link Schema} object is usually created from {@link SchemaFactory}.
43 * Two kinds of validators can be created from a {@link Schema} object.
44 * One is {@link Validator}, which provides highly-level validation
46 * {@link ValidatorHandler}, which works on top of SAX for better
51 * the {@link java.lang.Object#equals(java.lang.Object)} method.
74 * Creates a new {@link Validator} for this {@link Schema}
    [all...]
  /frameworks/base/docs/html/about/versions/
android-3.0.jd 30 ({@link android.os.Build.VERSION_CODES#HONEYCOMB}) is available as a downloadable
59 fragment, you must extend the {@link android.app.Fragment} class and implement several lifecycle
60 callback methods, similar to an {@link android.app.Activity}. You can then combine multiple
84 <p>To manage the fragments in your activity, you must use the {@link
89 <p>To perform a transaction, such as add or remove a fragment, you must create a {@link
90 android.app.FragmentTransaction}. You can then call methods such as {@link
91 android.app.FragmentTransaction#add add()} {@link android.app.FragmentTransaction#remove
92 remove()}, or {@link android.app.FragmentTransaction#replace replace()}. Once you've applied all
93 the changes you want to perform for the transaction, you must call {@link
130 which the system delivers to your activity's {@link android.app.Activity#onOptionsItemSelecte
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractListMultimap.java 28 * Basic implementation of the {@link ListMultimap} interface. It's a wrapper
29 * around {@link AbstractMultimap} that converts the returned collections into
30 * {@code Lists}. The {@link #createCollection} method must return a {@code
57 * insertion ordering, this method returns a {@link List}, instead of the
58 * {@link Collection} specified in the {@link Multimap} interface.
68 * insertion ordering, this method returns a {@link List}, instead of the
69 * {@link Collection} specified in the {@link Multimap} interface.
79 * insertion ordering, this method returns a {@link List}, instead of th
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/layout/
tabs.jd 3 parent.link=layout-objects.html
13 <li>{@link android.widget.TabWidget}</li>
14 <li>{@link android.widget.TabHost}</li>
15 <li>{@link android.widget.TabHost.TabSpec}</li>
16 <li>{@link android.widget.FrameLayout}</li>
20 <p>To create a tabbed UI, you need to use a {@link android.widget.TabHost} and a {@link
21 android.widget.TabWidget}. The {@link android.widget.TabHost} must be the root node for the layout,
22 which contains both the {@link android.widget.TabWidget} for displaying the tabs and a {@link
    [all...]
  /frameworks/base/docs/html-intl/ja/training/monitoring-device-state/
battery-monitoring.jd 3 parent.link=index.html
7 next.link=docking-monitoring.html
39 <p>??????????????????{@link android.os.BatteryManager} ???????????????????????? sticky {@link android.content.Intent} ???????????????????????????????????</p>
41 <p>??? sticky ???????????{@link android.content.BroadcastReceiver} ??????????????{@code registerReceiver} ??????{@code null} ??????????????????????????????????????????????????? {@link android.content.BroadcastReceiver} ??????????????????????????????????????????????????????</p>
65 <p>{@link android.os.BatteryManager} ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????{@link android.content.BroadcastReceiver} ???????????????????????????????? {@link android.content.Intent#ACTION_POWER_CONNECTED} ? {@link android.content.Intent#ACTION_POWER_DISCONNECTED} ?????? ????????????</p
    [all...]
  /frameworks/base/docs/html-intl/ru/training/monitoring-device-state/
battery-monitoring.jd 3 parent.link=index.html
7 next.link=docking-monitoring.html
39 <p>??????? ? ??????????? ???????? ????????? ???????. {@link android.os.BatteryManager} ???????? ??? ???????? ? ??????? ? ??????? ? ???????????? ????????? {@link android.content.Intent}, ??????? ???????? ????? ?????????? ? ????????? ???????.</p>
41 <p>????????? ??? ????????? ???????? ????????????, ?????????????? {@link android.content.BroadcastReceiver} ?? ?????. ????? ???????? ??????? ????????? ??????? ? ???? ?????????, ????? ??????? {@code registerReceiver}, ??????? {@code null} ? ???????? ?????????, ??? ???????? ? ???? ????. ????? ????? ???????? ??????????? ?????? {@link android.content.BroadcastReceiver}, ?? ??? ?????????????, ????????? ????????? ?????????? ????? ??????????? ???????.</p>
65 <p>{@link android.os.BatteryManager} ???????? ???????? ?????? ???, ????? ?????????? ???????????? ? ????????? ??????? ??? ??????????? ?? ????. ????? ???????? ??? ???????, ???? ???? ?????????? ?? ????????. ??? ???????, ? ?????????, ??????????, ??? ????? ????? ??????????? ?????????? ??? ?????????? ??????? ??????????. ????? ??????????? ??, ??????????????? {@link android.content.BroadcastReceiver} ? ?????????, ????? {@link android.content.Intent#ACTION_POWER_CONNECTED} ? {@link android.content.Intent#ACTION_POWER_DISCONNECTED} ? ??????? ?????????.</p
    [all...]
  /frameworks/base/docs/html-intl/zh-cn/training/monitoring-device-state/
battery-monitoring.jd 3 parent.link=index.html
7 next.link=docking-monitoring.html
39 <p>????????????{@link android.os.BatteryManager} ?????????????? {@link android.content.Intent} ???????????????</p>
41 <p>??????? intent??????????? {@code null} ? {@code registerReceiver} ?????????????????????? {@link android.content.BroadcastReceiver}???????????? intent???????????? {@link android.content.BroadcastReceiver} ??????????????????????????????????</p>
65 <p>????????????{@link android.os.BatteryManager} ????????????????????????????????????????????????????????????????????? intent ?????? {@link android.content.Intent#ACTION_POWER_CONNECTED} ? {@link android.content.Intent#ACTION_POWER_DISCONNECTED}??????? {@link android.content.BroadcastReceiver} ?????????</p
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/view/accessibility/
AccessibilityManager.java 29 * System level service that serves as an event dispatch for {@link AccessibilityEvent}s.
31 * for example an {@link android.app.Activity} starts, the focus or selection of a
32 * {@link android.view.View} changes etc. Parties interested in handling accessibility
34 * {@link android.accessibilityservice.AccessibilityService}.
68 * @param context A {@link Context}.
74 * Returns if the {@link AccessibilityManager} is enabled.
76 * @return True if this {@link AccessibilityManager} is enabled, false otherwise.
83 * Sends an {@link AccessibilityEvent}. If this {@link AccessibilityManager} is not
86 * @param event The {@link AccessibilityEvent}
    [all...]
  /sdk/testapps/libsTest/appTest/src/com/android/tests/libstest/app/
MainActivityTest.java 24 * An example of an {@link ActivityInstrumentationTestCase2} of a specific activity {@link Focus2}.
25 * By virtue of extending {@link ActivityInstrumentationTestCase2}, the target activity is automatically
27 * {@link android.test.InstrumentationTestCase}, which provides
29 * touch events. See {@link #sendKeys}.
31 * In general, {@link android.test.InstrumentationTestCase}s and {@link ActivityInstrumentationTestCase2}s
33 * user interface. When run via a {@link android.test.InstrumentationTestRunner},
34 * the necessary {@link android.app.Instrumentation} will be injected for you to
35 * user via {@link #getInstrumentation} in your tests
    [all...]
  /sdk/testapps/libsTest/lib1Test/src/com/android/tests/libstest/lib1/
MainActivityTest.java 24 * An example of an {@link ActivityInstrumentationTestCase2} of a specific activity {@link Focus2}.
25 * By virtue of extending {@link ActivityInstrumentationTestCase2}, the target activity is automatically
27 * {@link android.test.InstrumentationTestCase}, which provides
29 * touch events. See {@link #sendKeys}.
31 * In general, {@link android.test.InstrumentationTestCase}s and {@link ActivityInstrumentationTestCase2}s
33 * user interface. When run via a {@link android.test.InstrumentationTestRunner},
34 * the necessary {@link android.app.Instrumentation} will be injected for you to
35 * user via {@link #getInstrumentation} in your tests
    [all...]
  /sdk/testapps/libsTest/lib2Test/src/com/android/tests/libstest/lib2/
MainActivityTest.java 26 * An example of an {@link ActivityInstrumentationTestCase2} of a specific activity {@link Focus2}.
27 * By virtue of extending {@link ActivityInstrumentationTestCase2}, the target activity is automatically
29 * {@link android.test.InstrumentationTestCase}, which provides
31 * touch events. See {@link #sendKeys}.
33 * In general, {@link android.test.InstrumentationTestCase}s and {@link ActivityInstrumentationTestCase2}s
35 * user interface. When run via a {@link android.test.InstrumentationTestRunner},
36 * the necessary {@link android.app.Instrumentation} will be injected for you to
37 * user via {@link #getInstrumentation} in your tests
    [all...]
  /frameworks/base/core/java/android/os/storage/
OnObbStateChangeListener.java 20 * Used for receiving notifications from {@link StorageManager} about OBB file
27 * messages from calls made via {@link StorageManager}
33 * messages from calls made via {@link StorageManager}
40 * {@link StorageManager}
46 * from calls made via {@link StorageManager}
53 * {@link StorageManager}
59 * status messages from calls made via {@link StorageManager}
65 * made via {@link StorageManager}
73 * {@link StorageManager}

Completed in 4023 milliseconds

<<11121314151617181920>>