Home | History | Annotate | Download | only in util

Lines Matching refs:button

27 import android.widget.Button;
124 * Add a button.
125 * @param text The text of the button.
131 final Button button = new Button(context);
132 button.setText(text);
133 return button;
142 * @param textPrefix The text to prepend to each button.
183 final Button button = new Button(context);
184 button.setText(prefix + i);
185 ll.addView(button, lp);