Sony Addon SDK

Added in API level 1

public static class

SmallAppWindow.Attributes

This project is no longer being supported and will not get any further updates.
extends java.lang.Object
  1. java.lang.Object
  2. com.sony.smallapp.SmallAppWindow.Attributes

Class Overview

Attributes of the Window.

Summary

Constants
int FLAG_HARDWARE_ACCELERATED Indicates whether this Window should be hardware accelerated.
int FLAG_NO_TITLEBAR Flag for the "no titlebar" feature, turning off the title bar at the top of the Window.
int FLAG_RESIZABLE Flag for the "resizable" feature.
Fields
public int flags Various behavioral options/flags.
public int height Information about the desired height of this Window.
public int maxHeight Information about the desired maximum height of this Window.
public int maxWidth Information about the desired maximum width of this Window.
public int minHeight Information about the desired minimum height of this Window.
public int minWidth Information about the desired minimum width of this Window.
public int width Information about the desired width of this Window.
Public Constructors
SmallAppWindow.Attributes()

Constants

Added in API level 1 public static final int FLAG_HARDWARE_ACCELERATED

Indicates whether this Window should be hardware accelerated.

Constant Value: 4 (0x00000004)

Added in API level 1 public static final int FLAG_NO_TITLEBAR

Flag for the "no titlebar" feature, turning off the title bar at the top of the Window.

When the Window has a titlebar, the application content area is reduced to the area below the titlebar. When the titlebar is turned off, the content area fills the whole Window (except that background image padding).

Constant Value: 1 (0x00000001)

Added in API level 1 public static final int FLAG_RESIZABLE

Flag for the "resizable" feature. This is enabled by default.

Constant Value: 2 (0x00000002)

Fields

Added in API level 1 public int flags

Various behavioral options/flags.

See Also

Added in API level 1 public int height

Information about the desired height of this Window.

Added in API level 1 public int maxHeight

Information about the desired maximum height of this Window.

Added in API level 1 public int maxWidth

Information about the desired maximum width of this Window.

Added in API level 1 public int minHeight

Information about the desired minimum height of this Window.

Added in API level 1 public int minWidth

Information about the desired minimum width of this Window.

Added in API level 1 public int width

Information about the desired width of this Window.

Public Constructors

public SmallAppWindow.Attributes()