Home | History | Annotate | Download | only in launcher3

Lines Matching refs:INTENT

22 import android.content.Intent;
63 * The intent used to start the application.
65 Intent intent;
83 Intent.ShortcutIconResource iconResource;
124 * If this shortcut is a placeholder, then intent will be a market intent for the package, and
125 * this will hold the original intent from the database. Otherwise, null.
128 Intent promisedIntent;
134 public Intent getIntent() {
135 return intent;
138 ShortcutInfo(Intent intent, CharSequence title, CharSequence contentDescription,
141 this.intent = intent;
151 intent = new Intent(info.intent);
153 iconResource = new Intent.ShortcutIconResource();
169 intent = new Intent(info.intent);
187 mIcon = iconCache.getIcon(promisedIntent != null ? promisedIntent : intent, user);
199 : (intent != null ? intent.toUri(0) : null);
200 values.put(LauncherSettings.BaseLauncherColumns.INTENT, uri);
223 return "ShortcutInfo(title=" + title + "intent=" + intent + "id=" + this.id
239 return promisedIntent != null ? promisedIntent.getComponent() : intent.getComponent();