Home | History | Annotate | Download | only in widget

Lines Matching defs:fillInIntent

318                 Intent fillInIntent) {
319 return onClickHandler(view, pendingIntent, fillInIntent, StackId.INVALID_STACK_ID);
323 Intent fillInIntent, int launchStackId) {
338 pendingIntent.getIntentSender(), fillInIntent,
555 public SetOnClickFillInIntent(int id, Intent fillInIntent) {
557 this.fillInIntent = fillInIntent;
562 fillInIntent = Intent.CREATOR.createFromParcel(parcel);
568 fillInIntent.writeToParcel(dest, 0 /* no flags */);
582 target.setTagInternal(com.android.internal.R.id.fillInIntent, fillInIntent);
583 } else if (fillInIntent != null) {
618 fillInIntent.setSourceBounds(rect);
619 handler.onClickHandler(v, pendingIntent, fillInIntent);
631 Intent fillInIntent;
674 Intent fillInIntent = null;
677 Object tag = vg.getChildAt(i).getTag(com.android.internal.R.id.fillInIntent);
679 fillInIntent = (Intent) tag;
683 if (fillInIntent == null) return;
689 handler.onClickHandler(view, pendingIntentTemplate, fillInIntent);
2996 * action of a given item can be distinguished by setting a fillInIntent on that item. The
2997 * fillInIntent is then combined with the PendingIntent template in order to determine the final
2999 * which are left blank in the PendingIntent template, but are provided by the fillInIntent
3002 * set in fillInIntent. See {@link Intent#fillIn(Intent, int)} for more details.
3004 * @param viewId The id of the view on which to set the fillInIntent
3005 * @param fillInIntent The intent which will be combined with the parent's PendingIntent
3008 public void setOnClickFillInIntent(int viewId, Intent fillInIntent) {
3009 addAction(new SetOnClickFillInIntent(viewId, fillInIntent));