Lines Matching defs:button

214      * the "Clear All" button or by swiping it away individually.
432 * the Clear all button.
2760 * the system as a button adjacent to the notification content.
2785 * the system as a button adjacent to the notification content.
3137 final RemoteViews button = generateActionButton(mActions.get(i));
3138 big.addView(R.id.actions, button);
3174 RemoteViews button = new BuilderRemoteViews(mContext.getApplicationInfo(),
3178 button.setTextViewCompoundDrawablesRelative(R.id.action0, ai, null, null, null);
3179 button.setTextViewText(R.id.action0, processLegacyText(action.title));
3181 button.setOnClickPendingIntent(R.id.action0, action.actionIntent);
3183 button.setContentDescription(R.id.action0, action.title);
3184 processLegacyAction(action, button);
3185 return button;
3196 private void processLegacyAction(Action action, RemoteViews button) {
3198 button.setTextViewCompoundDrawablesRelativeColorFilter(R.id.action0, 0,
4448 RemoteViews button = new BuilderRemoteViews(mBuilder.mContext.getApplicationInfo(),
4450 button.setImageViewIcon(R.id.action0, action.getIcon());
4451 button.setDrawableParameters(R.id.action0, false, -1,
4455 button.setOnClickPendingIntent(R.id.action0, action.actionIntent);
4457 button.setContentDescription(R.id.action0, action.title);
4458 return button;
4479 final RemoteViews button = generateMediaActionButton(action);
4480 view.addView(com.android.internal.R.id.media_actions, button);
4496 final RemoteViews button = generateMediaActionButton(mBuilder.mActions.get(i));
4497 big.addView(com.android.internal.R.id.media_actions, button);