ButtonPicasa.java :  » App » gappslauncher » es » kix2902 » gapps » buttons2 » Android Open Source

Android Open Source » App » gappslauncher 
gappslauncher » es » kix2902 » gapps » buttons2 » ButtonPicasa.java
package es.kix2902.gapps.buttons2;

import es.kix2902.gapps.Globals;
import es.kix2902.gapps.R;

public class ButtonPicasa extends WidgetButton {
  
  static ButtonPicasa ownButton=null;

  public static ButtonPicasa getInstance() {
    if (ownButton==null)
    {
      ownButton = new ButtonPicasa();
    }
    
    return ownButton;
  }

  @Override
  void initButton() {
    buttonID = Globals.BUTTON_PICASA;
    preferenceName = Globals.PREF_PICASA;
    Icon = R.drawable.picasa;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.