OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sdFilter
(Results
1 - 2
of
2
) sorted by null
/development/samples/MultiDisplay/src/com/example/android/multidisplay/launcher/
AppListViewModel.java
115
IntentFilter
sdFilter
= new IntentFilter();
116
sdFilter
.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
117
sdFilter
.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
118
context.registerReceiver(this,
sdFilter
);
/development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCustom.java
194
IntentFilter
sdFilter
= new IntentFilter();
195
sdFilter
.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
196
sdFilter
.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
197
mLoader.getContext().registerReceiver(this,
sdFilter
);
Completed in 94 milliseconds