Package com.ribomation.droidAtScreen

Examples of com.ribomation.droidAtScreen.Skin


    return frame;
  }


  private void applySkin() {
    Skin skin = null;
    try {
      skin = SkinUtil.loadSkin(device.getName().toLowerCase());
        } catch (Exception ignore) {
    }
    if (skin != null) {
View Full Code Here


    if (skinImage == null) {
      return null;
    }

    Skin skin = new Skin();
    skin.setFrame(skinImage);
    String property = skinProperties.getProperty("screen.x");
    int x = property == null ? 0 : Integer.parseInt(property);
    property = skinProperties.getProperty("screen.y");
    int y = property == null ? 0 : Integer.parseInt(property);
    skin.setScreenXYCoord(new Point(x, y));
    return skin;
  }
View Full Code Here

TOP

Related Classes of com.ribomation.droidAtScreen.Skin

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.