package es.kix2902.gapps.buttons;
import es.kix2902.gapps.Globals;
import es.kix2902.gapps.R;
public class ButtonNotebook extends WidgetButton {
static ButtonNotebook ownButton=null;
public static ButtonNotebook getInstance() {
if (ownButton==null)
{
ownButton = new ButtonNotebook();
}
return ownButton;
}
@Override
void initButton() {
buttonID = Globals.BUTTON_NOTEBOOK;
preferenceName = Globals.PREF_NOTEBOOK;
Icon = R.drawable.notebook;
}
}
|