Home
last modified time | relevance | path

Searched refs:extras (Results 1 – 20 of 20) sorted by relevance

/development/samples/HoneycombGallery/src/com/example/android/hcgallery/
DContentActivity.java18 Bundle extras = getIntent().getExtras(); in onCreate() local
19 if (extras != null) { in onCreate()
22 mThemeId = extras.getInt("theme"); in onCreate()
34 if (extras != null) { in onCreate()
36 int category = extras.getInt("category"); in onCreate()
37 int position = extras.getInt("position"); in onCreate()
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
DNoteEdit.java44 Bundle extras = getIntent().getExtras(); in onCreate() local
45 if (extras != null) { in onCreate()
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onCreate()
47 String body = extras.getString(NotesDbAdapter.KEY_BODY); in onCreate()
48 mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID); in onCreate()
DNotepadv3.java129 Bundle extras = intent.getExtras(); in onActivityResult() local
132 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onActivityResult()
133 String body = extras.getString(NotesDbAdapter.KEY_BODY); in onActivityResult()
138 Long rowId = extras.getLong(NotesDbAdapter.KEY_ROWID); in onActivityResult()
140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE); in onActivityResult()
141 String editBody = extras.getString(NotesDbAdapter.KEY_BODY); in onActivityResult()
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
DNoteEdit.java44 Bundle extras = getIntent().getExtras(); in onCreate() local
45 if (extras != null) { in onCreate()
46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onCreate()
47 String body = extras.getString(NotesDbAdapter.KEY_BODY); in onCreate()
48 mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID); in onCreate()
DNotepadv2.java129 Bundle extras = intent.getExtras(); in onActivityResult() local
132 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onActivityResult()
133 String body = extras.getString(NotesDbAdapter.KEY_BODY); in onActivityResult()
138 Long rowId = extras.getLong(NotesDbAdapter.KEY_ROWID); in onActivityResult()
140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE); in onActivityResult()
141 String editBody = extras.getString(NotesDbAdapter.KEY_BODY); in onActivityResult()
/development/samples/ApiDemos/src/com/example/android/apis/os/
DSmsMessageReceiver.java34 Bundle extras = intent.getExtras(); in onReceive() local
35 if (extras == null) in onReceive()
38 Object[] pdus = (Object[]) extras.get("pdus"); in onReceive()
/development/samples/StackWidget/src/com/example/android/stackwidget/
DStackWidgetService.java86 Bundle extras = new Bundle(); in getViewAt() local
87 extras.putInt(StackWidgetProvider.EXTRA_ITEM, position); in getViewAt()
89 fillInIntent.putExtras(extras); in getViewAt()
/development/apps/FontLab/src/com/android/fontlab/
DFontLab.java255 String data, Map extras) { in onActivityResult() argument
260 int color = ((Integer)extras.get("text")).intValue(); in onActivityResult()
268 Integer texture = (Integer)extras.get("texture"); in onActivityResult()
272 color = ((Integer)extras.get("bgcolor")).intValue(); in onActivityResult()
345 private void setFont(TextView t, TextView f, Map extras) { in setFont() argument
346 int style = ((Integer)extras.get("style")).intValue(); in setFont()
347 String font = (String)extras.get("font"); in setFont()
350 f.setText((String)extras.get("title")); in setFont()
/development/build/
Dsdk.atree224 …ource.properties extras/android/support/so…
225 …EADME.txt extras/android/support/RE…
226 …E.txt extras/android/support/NO…
228 …obj/PACKAGING/android-support-v4_intermediates/android-support-v4.jar extras/android/support/v4…
229extras/android/support/v4…
230 …rt4Demos extras/android/support/sa…
231 …rtAppNavigation extras/android/support/sa…
233 …obj/PACKAGING/android-support-v13_intermediates/android-support-v13.jar extras/android/support/v1…
234extras/android/support/v1…
235 …rt13Demos extras/android/support/sa…
[all …]
Dsdk_only_whitelist.mk56 system/extras/ext4_utils
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
DWeatherWidgetService.java91 final Bundle extras = new Bundle(); in getViewAt() local
92 extras.putString(WeatherWidgetProvider.EXTRA_DAY_ID, day); in getViewAt()
93 fillInIntent.putExtras(extras); in getViewAt()
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
DNoteEdit.java50 Bundle extras = getIntent().getExtras(); in onCreate() local
51 mRowId = extras != null ? extras.getLong(NotesDbAdapter.KEY_ROWID) in onCreate()
/development/samples/ApiDemos/src/com/example/android/apis/appwidget/
DExampleAppWidgetConfigure.java70 Bundle extras = intent.getExtras(); in onCreate() local
71 if (extras != null) { in onCreate()
72 mAppWidgetId = extras.getInt( in onCreate()
/development/samples/ApiDemos/src/com/example/android/apis/media/
DMediaPlayerDemo_Audio.java47 Bundle extras = getIntent().getExtras(); in onCreate() local
48 playAudio(extras.getInt(MEDIA)); in onCreate()
DMediaPlayerDemo_Video.java46 private Bundle extras; field in MediaPlayerDemo_Video
68 extras = getIntent().getExtras(); in onCreate()
181 playVideo(extras.getInt(MEDIA)); in surfaceCreated()
/development/samples/training/basic/ActivityLifecycle/
Dbuild.properties17 extensible.classpath=${sdk.dir}/extras/android/support/v13/android-support-v13.jar
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeyNetworkMonitor.java43 public void performReceive(Intent intent, int resultCode, String data, Bundle extras, in performReceive() argument
/development/build/tools/
Dsdk_repo.mk111 $(eval $(call mk-sdk-repo-pkg-3,$(HOST_OS),$(MAIN_SDK_ZIP),support,extras/android))
197 SDK_EXTRAS_XML := $(HOST_OUT)/sdk/repo-extras.xml
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
DSyncAdapter.java67 public void onPerformSync(Account account, Bundle extras, String authority, in onPerformSync() argument
/development/samples/training/location-aware/src/com/example/android/location/
DLocationActivity.java274 public void onStatusChanged(String provider, int status, Bundle extras) {