Class GuiImage
- java.lang.Object
-
- com.kakao.vectormap.mapwidget.component.GuiView
-
- com.kakao.vectormap.mapwidget.component.GuiImage
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
assetId
Bitmap
bitmap
int
bottom
GuiView
child
boolean
isNinepatch
int
left
int
resourceId
int
right
int
top
-
Fields inherited from class com.kakao.vectormap.mapwidget.component.GuiView
clickable, horizontalAlign, horizontalOrigin, id, paddingBottom, paddingLeft, paddingRight, paddingTop, tag, type, verticalAlign, verticalOrigin
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addChild(GuiView child)
child component 를 추가한다.Bitmap
getBitmap()
이미지 비트맵을 가져온다.GuiView
getChild()
child component 를 가져온다.int
getResourceId()
이미지 리소스 아이디를 가져온다.boolean
isNinepatch()
이미지가 늘어나는 되는 이미지인지 여부를 가져온다.void
setFixedArea(int left, int top, int right, int bottom)
이미지의 늘어나지 않고 고정되어야 하는 부분을 설정한다.-
Methods inherited from class com.kakao.vectormap.mapwidget.component.GuiView
getHorizontalAlign, getHorizontalOrigin, getId, getPaddingBottom, getPaddingLeft, getPaddingRight, getPaddingTop, getTag, getVerticalAlign, getVerticalOrigin, isClickable, setAlign, setClickable, setHorizontalOrigin, setId, setOrigin, setPadding, setTag, setVerticalOrigin
-
-
-
-
Field Detail
-
resourceId
public int resourceId
-
bitmap
public Bitmap bitmap
-
isNinepatch
public boolean isNinepatch
-
assetId
public java.lang.String assetId
-
child
public GuiView child
-
left
public int left
-
top
public int top
-
right
public int right
-
bottom
public int bottom
-
-
Method Detail
-
setFixedArea
public void setFixedArea(int left, int top, int right, int bottom)
이미지의 늘어나지 않고 고정되어야 하는 부분을 설정한다. (px)- Parameters:
left
- 이미지의 왼쪽으로부터 고정되어야 하는 부분의 크기 (px)top
- 이미지의 위쪽으로부터 고정되어야 하는 부분의 크기 (px)right
- 이미지의 오른쪽으로부터 고정되어야 하는 부분의 크기 (px)bottom
- 이미지의 아래쪽으로부터 고정되어야 하는 부분의 크기 (px)
-
addChild
public void addChild(GuiView child)
child component 를 추가한다.- Parameters:
child
- 추가할 child component
-
getChild
public GuiView getChild()
child component 를 가져온다.- Returns:
- child component
-
getResourceId
public int getResourceId()
이미지 리소스 아이디를 가져온다.- Returns:
- 이미지 리소스 아이디
-
isNinepatch
public boolean isNinepatch()
이미지가 늘어나는 되는 이미지인지 여부를 가져온다.- Returns:
- 이미지가 늘어나는 되는 이미지인지 여부
-
getBitmap
public Bitmap getBitmap()
이미지 비트맵을 가져온다.- Returns:
- 이미지 비트맵
-
-