Home | History | Annotate | Download | only in widget

Lines Matching defs:Duration

71     public @interface Duration {}
109 * Show the view for the specified duration.
131 * after the appropriate duration.
164 public void setDuration(@Duration int duration) {
165 mDuration = duration;
169 * Return the duration.
172 @Duration
254 * @param duration How long to display the message. Either {@link #LENGTH_SHORT} or
258 public static Toast makeText(Context context, CharSequence text, @Duration int duration) {
268 result.mDuration = duration;
279 * @param duration How long to display the message. Either {@link #LENGTH_SHORT} or
284 public static Toast makeText(Context context, @StringRes int resId, @Duration int duration)
286 return makeText(context, context.getResources().getText(resId), duration);