HomeSort by relevance Sort by last modified time
    Searched refs:Bundle (Results 476 - 500 of 3349) sorted by null

<<11121314151617181920>>

  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
ActionBarActivity.java 20 import android.os.Bundle;
51 protected void onCreate(Bundle savedInstanceState) {
58 protected void onPostCreate(Bundle savedInstanceState) {
ActionBarHelper.java 21 import android.os.Bundle;
57 * Action bar helper code to be run in {@link Activity#onCreate(android.os.Bundle)}.
59 public void onCreate(Bundle savedInstanceState) {
63 * Action bar helper code to be run in {@link Activity#onPostCreate(android.os.Bundle)}.
65 public void onPostCreate(Bundle savedInstanceState) {
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
ImePreferences.java 20 import android.os.Bundle;
37 protected void onCreate(Bundle savedInstanceState) {
46 public void onCreate(Bundle savedInstanceState) {
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/lib/
TabHelper.java 20 import android.os.Bundle;
75 protected abstract void onSaveInstanceState(Bundle outState);
77 protected abstract void onRestoreInstanceState(Bundle savedInstanceState);
  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoAndroidHarness.java 4 import android.os.Bundle;
11 public void onCreate(Bundle savedInstanceState)
14 // First Extract the bundle from intent
15 Bundle bundle = getIntent().getExtras(); local
18 appClass = bundle.getString("APPCLASSNAME");
21 String eglConfig = bundle.getString("EGLCONFIG");
36 if (bundle.getBoolean("VERBOSE"))
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResultReceiver.java 3 import android.os.Bundle;
19 public void send(int resultCode, android.os.Bundle resultData) {
21 Method onReceiveResult = ResultReceiver.class.getDeclaredMethod("onReceiveResult", Integer.TYPE, Bundle.class);
  /frameworks/base/core/java/android/accounts/
AccountManager.java 27 import android.os.Bundle;
160 * Bundle key used for the {@link String} account name in results
166 * Bundle key used for the {@link String} account type in results
172 * Bundle key used for the auth token value in results
178 * Bundle key used for an {@link Intent} in results from methods that
185 * Bundle key used to supply the password directly in options to
211 * The Android package of the caller will be set in the options bundle by the
268 public static Bundle sanitizeResult(Bundle result) {
272 final Bundle newResult = new Bundle(result)
    [all...]
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestTextViewDrawablesLtr.java 20 import android.os.Bundle;
33 Bundle savedInstanceState) {
39 public void onViewCreated(View view, Bundle savedInstanceState) {
BiDiTestTextViewDrawablesRtl.java 20 import android.os.Bundle;
33 Bundle savedInstanceState) {
39 public void onViewCreated(View view, Bundle savedInstanceState) {
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
Test.java 5 import android.os.Bundle;
10 private Bundle mBundle;
19 mBundle = new Bundle();
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfTest.java 4 import android.os.Bundle;
30 Bundle testResult = new Bundle();
  /frameworks/base/tools/layoutlib/bridge/src/com/google/android/maps/
MapView.java 22 import android.os.Bundle;
112 public void onSaveInstanceState(Bundle state) {
115 public void onRestoreInstanceState(Bundle state) {
  /frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
AccessibilityNodeProviderCompatJellyBean.java 19 import android.os.Bundle;
31 public boolean performAction(int virtualViewId, int action, Bundle arguments);
54 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteProviderDescriptor.java 19 import android.os.Bundle;
36 private final Bundle mBundle;
39 private MediaRouteProviderDescriptor(Bundle bundle,
41 mBundle = bundle;
55 ArrayList<Bundle> routeBundles = mBundle.<Bundle>getParcelableArrayList(KEY_ROUTES);
100 * Converts this object to a bundle for serialization.
102 * @return The contents of the object represented as a bundle.
104 public Bundle asBundle()
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/
AlbumActivity.java 20 import android.os.Bundle;
30 protected void onCreate(Bundle savedInstanceState) {
32 Bundle intentExtras = getIntent().getExtras();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Source.java 25 import android.os.Bundle;
111 Intent createSearchIntent(String query, Bundle appData);
113 Intent createVoiceSearchIntent(Bundle appData);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AbstractMailActivity.java 22 import android.os.Bundle;
45 protected void onCreate(Bundle savedInstanceState) {
72 protected void onSaveInstanceState(Bundle outState) {
  /developers/build/prebuilts/gradle/SlidingTabsColors/SlidingTabsColorsSample/src/main/java/com/example/android/slidingtabscolors/
ContentFragment.java 19 import android.os.Bundle;
37 * @return a new instance of {@link ContentFragment}, adding the parameters into a bundle and
42 Bundle bundle = new Bundle(); local
43 bundle.putCharSequence(KEY_TITLE, title);
44 bundle.putInt(KEY_INDICATOR_COLOR, indicatorColor);
45 bundle.putInt(KEY_DIVIDER_COLOR, dividerColor);
48 fragment.setArguments(bundle);
55 Bundle savedInstanceState)
    [all...]
  /developers/samples/android/ui/views/SlidingTabs/SlidingTabsColors/SlidingTabsColorsSample/src/main/java/com/example/android/slidingtabscolors/
ContentFragment.java 19 import android.os.Bundle;
37 * @return a new instance of {@link ContentFragment}, adding the parameters into a bundle and
42 Bundle bundle = new Bundle(); local
43 bundle.putCharSequence(KEY_TITLE, title);
44 bundle.putInt(KEY_INDICATOR_COLOR, indicatorColor);
45 bundle.putInt(KEY_DIVIDER_COLOR, dividerColor);
48 fragment.setArguments(bundle);
55 Bundle savedInstanceState)
    [all...]
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/ui/
ImageDetailFragment.java 19 import android.os.Bundle;
50 final Bundle args = new Bundle();
67 public void onCreate(Bundle savedInstanceState) {
74 Bundle savedInstanceState) {
82 public void onActivityCreated(Bundle savedInstanceState) {
  /frameworks/base/core/java/android/appwidget/
AppWidgetProvider.java 22 import android.os.Bundle;
62 Bundle extras = intent.getExtras();
71 Bundle extras = intent.getExtras();
78 Bundle extras = intent.getExtras();
82 Bundle widgetExtras = extras.getBundle(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS);
132 int appWidgetId, Bundle newOptions) {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceStatus.java 22 import android.os.Bundle;
29 * {@link Bundle}. Instead, the caller requesting the sync specifies values with which to call
54 // Keys for the sync extras Bundle that specify the callback.
59 // Keys for the status Bundle sent to the callback. These keys are used in every status type.
74 public void addToStatus(final Bundle statusExtras);
90 private static void syncStatus(final ContentResolver cr, final Bundle syncExtras,
98 final Bundle statusExtras = new Bundle(4);
123 public static void syncMailboxStatus(final ContentResolver cr, final Bundle syncExtras,
IEmailService.aidl 25 import android.os.Bundle;
45 Bundle validate(in HostAuth hostauth);
52 Bundle autoDiscover(String userName, String password);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ReportViewerActivity.java 21 import android.os.Bundle;
29 protected void onCreate(Bundle savedInstanceState) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleClientTestActivity.java 23 import android.os.Bundle;
28 protected void onCreate(Bundle savedInstanceState) {

Completed in 762 milliseconds

<<11121314151617181920>>