Home
last modified time | relevance | path

Searched refs:bundle (Results 1 – 12 of 12) sorted by relevance

/development/samples/training/threadsample/src/com/example/android/threadsample/
DPhotoFragment.java94 public void onCreate(Bundle bundle) { in onCreate() argument
95 super.onCreate(bundle); in onCreate()
102 public View onCreateView(LayoutInflater inflater, ViewGroup viewGroup, Bundle bundle) { in onCreateView() argument
103 super.onCreateView(inflater, viewGroup, bundle); in onCreateView()
121 if (bundle != null) { in onCreateView()
122 mURLString = bundle.getString(PHOTO_URL_KEY); in onCreateView()
172 public void onSaveInstanceState(Bundle bundle) { in onSaveInstanceState() argument
174 super.onSaveInstanceState(bundle); in onSaveInstanceState()
177 bundle.putString(PHOTO_URL_KEY, mURLString); in onSaveInstanceState()
DPhotoThumbnailFragment.java96 public Loader<Cursor> onCreateLoader(int loaderID, Bundle bundle) in onCreateLoader() argument
124 public View onCreateView(LayoutInflater inflater, ViewGroup viewGroup, Bundle bundle) { in onCreateView() argument
127 super.onCreateView(inflater, viewGroup, bundle); in onCreateView()
199 if (bundle == null) { in onCreateView()
207 } else if (bundle.getBoolean(STATE_IS_HIDDEN, false)) { in onCreateView()
329 public void onSaveInstanceState(Bundle bundle) { in onSaveInstanceState() argument
332 bundle.putBoolean(STATE_IS_HIDDEN, isHidden()); in onSaveInstanceState()
335 super.onSaveInstanceState(bundle); in onSaveInstanceState()
/development/apps/BluetoothDebug/src/com/android/bluetoothdebug/
DDebugReceiver.java49 Bundle bundle = intent.getExtras(); in onReceive() local
50 if (bundle == null) return; in onReceive()
51 for (String extra : bundle.keySet()) { in onReceive()
52 Log.d(TAG, "\t" + shorten(extra) + " = " + bundle.get(extra)); in onReceive()
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
DNoteEdit.java61 Bundle bundle = new Bundle(); in onCreate()
63 bundle.putString(NotesDbAdapter.KEY_TITLE, mTitleText.getText().toString()); in onCreate()
64 bundle.putString(NotesDbAdapter.KEY_BODY, mBodyText.getText().toString()); in onCreate()
66 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId); in onCreate()
70 mIntent.putExtras(bundle); in onCreate()
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
DNoteEdit.java61 Bundle bundle = new Bundle(); in onCreate()
63 bundle.putString(NotesDbAdapter.KEY_TITLE, mTitleText.getText().toString()); in onCreate()
64 bundle.putString(NotesDbAdapter.KEY_BODY, mBodyText.getText().toString()); in onCreate()
66 bundle.putLong(NotesDbAdapter.KEY_ROWID, mRowId); in onCreate()
70 mIntent.putExtras(bundle); in onCreate()
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
DDialogHelperImpl.java88 Bundle bundle = new Bundle(); in showErrorMessageDialog() local
89 bundle.putString(KEY_TITLE, title); in showErrorMessageDialog()
90 bundle.putSerializable(KEY_EXCEPTION, exception); in showErrorMessageDialog()
91 mActivity.showDialog(DIALOG_ID_EXCEPTION, bundle); in showErrorMessageDialog()
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
DAuthenticator.java69 final Bundle bundle = new Bundle(); in addAccount() local
70 bundle.putParcelable(AccountManager.KEY_INTENT, intent); in addAccount()
71 return bundle; in addAccount()
122 final Bundle bundle = new Bundle(); in getAuthToken() local
123 bundle.putParcelable(AccountManager.KEY_INTENT, intent); in getAuthToken()
124 return bundle; in getAuthToken()
/development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/
DVoiceRecognitionService.java67 Bundle bundle = new Bundle(); in onStartListening() local
68 bundle.putStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION, results); in onStartListening()
71 listener.results(bundle); in onStartListening()
/development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DBluetoothChatService.java177 Bundle bundle = new Bundle(); in connected() local
178 bundle.putString(BluetoothChat.DEVICE_NAME, device.getName()); in connected()
179 msg.setData(bundle); in connected()
236 Bundle bundle = new Bundle(); in connectionFailed() local
237 bundle.putString(BluetoothChat.TOAST, "Unable to connect device"); in connectionFailed()
238 msg.setData(bundle); in connectionFailed()
251 Bundle bundle = new Bundle(); in connectionLost() local
252 bundle.putString(BluetoothChat.TOAST, "Device connection was lost"); in connectionLost()
253 msg.setData(bundle); in connectionLost()
/development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/
DGameActivity.java52 public void onCreate(Bundle bundle) { in onCreate() argument
53 super.onCreate(bundle); in onCreate()
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/
DAddVoicemailActivity.java150 protected Dialog onCreateDialog(int id, Bundle bundle) { in onCreateDialog() argument
151 return mDialogHelper.handleOnCreateDialog(id, bundle); in onCreateDialog()
/development/ide/xcode/ports/
Dskia_mac.cp57 // CreateNibReference only searches into the application bundle.