OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mainIntent
(Results
1 - 19
of
19
) sorted by null
/development/samples/ApiDemos/src/com/example/android/apis/view/
Grid1.java
54
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
55
mainIntent
.addCategory(Intent.CATEGORY_LAUNCHER);
57
mApps = getPackageManager().queryIntentActivities(
mainIntent
, 0);
LayoutAnimation1.java
48
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
49
mainIntent
.addCategory(Intent.CATEGORY_LAUNCHER);
51
mApps = getPackageManager().queryIntentActivities(
mainIntent
, 0);
LayoutAnimation4.java
49
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
50
mainIntent
.addCategory(Intent.CATEGORY_LAUNCHER);
52
mApps = getPackageManager().queryIntentActivities(
mainIntent
, 0);
LayoutAnimation5.java
48
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
49
mainIntent
.addCategory(Intent.CATEGORY_LAUNCHER);
51
mApps = getPackageManager().queryIntentActivities(
mainIntent
, 0);
LayoutAnimation6.java
48
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
49
mainIntent
.addCategory(Intent.CATEGORY_LAUNCHER);
51
mApps = getPackageManager().queryIntentActivities(
mainIntent
, 0);
Grid3.java
61
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
62
mainIntent
.addCategory(Intent.CATEGORY_LAUNCHER);
64
mApps = getPackageManager().queryIntentActivities(
mainIntent
, 0);
/development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java
58
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
59
mainIntent
.addCategory(Intent.CATEGORY_SAMPLE_CODE);
62
List<ResolveInfo> list = pm.queryIntentActivities(
mainIntent
, 0);
/development/samples/Support13Demos/src/com/example/android/supportv13/
Support13Demos.java
58
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
59
mainIntent
.addCategory("com.example.android.supportv13.SUPPORT13_SAMPLE_CODE");
62
List<ResolveInfo> list = pm.queryIntentActivities(
mainIntent
, 0);
/development/samples/Support4Demos/src/com/example/android/supportv4/
Support4Demos.java
58
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
59
mainIntent
.addCategory("com.example.android.supportv4.SUPPORT4_SAMPLE_CODE");
62
List<ResolveInfo> list = pm.queryIntentActivities(
mainIntent
, 0);
/development/samples/Support7Demos/src/com/example/android/supportv7/
Support7Demos.java
58
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
59
mainIntent
.addCategory("com.example.android.supportv7.SAMPLE_CODE");
62
List<ResolveInfo> list = pm.queryIntentActivities(
mainIntent
, 0);
/pdk/apps/HelloPDK/src/com/example/android/helloPDK/
MainActivity.java
61
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
62
mainIntent
.addCategory(Intent.CATEGORY_SAMPLE_CODE);
65
List<ResolveInfo> list = pm.queryIntentActivities(
mainIntent
, 0);
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
ManifestTestListAdapter.java
124
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN);
125
mainIntent
.addCategory(CATEGORY_MANUAL_TEST);
128
List<ResolveInfo> list = packageManager.queryIntentActivities(
mainIntent
,
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
HwTests.java
61
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
62
mainIntent
.addCategory(CATEGORY_HWUI_TEST);
65
List<ResolveInfo> list = pm.queryIntentActivities(
mainIntent
, 0);
/packages/apps/Launcher2/src/com/android/launcher2/
AllAppsList.java
172
final Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
173
mainIntent
.addCategory(Intent.CATEGORY_LAUNCHER);
174
mainIntent
.setPackage(packageName);
176
final List<ResolveInfo> apps = packageManager.queryIntentActivities(
mainIntent
, 0);
LauncherModel.java
[
all
...]
Launcher.java
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
AllAppsList.java
177
final Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
178
mainIntent
.addCategory(Intent.CATEGORY_LAUNCHER);
179
mainIntent
.setPackage(packageName);
181
final List<ResolveInfo> apps = packageManager.queryIntentActivities(
mainIntent
, 0);
Launcher.java
[
all
...]
/development/samples/Home/src/com/example/android/home/
Home.java
486
Intent
mainIntent
= new Intent(Intent.ACTION_MAIN, null);
487
mainIntent
.addCategory(Intent.CATEGORY_LAUNCHER);
489
final List<ResolveInfo> apps = manager.queryIntentActivities(
mainIntent
, 0);
Completed in 819 milliseconds