Package com.microej.wear.components
Interface Activity
-
public interface ActivityRepresents an activity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Gets the name of this activity.voidrenderIcon(ej.microui.display.GraphicsContext g, int x, int y, int size)Renders the icon of this activity.voidshow()Shows this activity.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the name of this activity.- Returns:
- the name of this activity.
-
renderIcon
void renderIcon(ej.microui.display.GraphicsContext g, int x, int y, int size)Renders the icon of this activity.- Parameters:
g- the graphics context to draw with.x- the x coordinate of the region to draw in.y- the y coordinate of the region to draw in.size- the width and height of the region to draw in.
-
show
void show()
Shows this activity.
-
-