Home | History | Annotate | Download | only in camera

Lines Matching defs:OnScreenHint

40  * constructs everything you need and returns a new {@code OnScreenHint} object.
42 public class OnScreenHint {
43 static final String TAG = "OnScreenHint";
58 * Construct an empty OnScreenHint object. You must call {@link #setView}
65 public OnScreenHint(Context context) {
77 mParams.setTitle("OnScreenHint");
106 public static OnScreenHint makeText(Context context, CharSequence text) {
107 OnScreenHint result = new OnScreenHint(context);
122 * Update the text in a OnScreenHint that was previously created using one
124 * @param s The new text for the OnScreenHint.
128 throw new RuntimeException("This OnScreenHint was not "
129 + "created with OnScreenHint.makeText()");
133 throw new RuntimeException("This OnScreenHint was not "
134 + "created with OnScreenHint.makeText()");