Class GuiLayout
- java.lang.Object
-
- com.kakao.vectormap.mapwidget.component.GuiView
-
- com.kakao.vectormap.mapwidget.component.GuiLayout
-
-
Field Summary
Fields Modifier and Type Field Description GuiImage
background
GuiView[]
childArray
int
orientation
-
Fields inherited from class com.kakao.vectormap.mapwidget.component.GuiView
clickable, horizontalAlign, horizontalOrigin, id, paddingBottom, paddingLeft, paddingRight, paddingTop, tag, type, verticalAlign, verticalOrigin
-
-
Constructor Summary
Constructors Constructor Description GuiLayout(Orientation orientation)
GuiLayout
의 child 배치 방향 상수
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addView(GuiView view)
GuiLayout
에 child component 를 추가한다.GuiImage
getBackground()
GuiLayout
의 배경 이미지를 가져온다.GuiView
getChild(java.lang.String id)
id 에 해당하는 child component 를 가져온다.GuiView[]
getChildArray()
GuiLayout
에 추가된 child component 의 배열을 가져온다.GuiView
getChildAt(int index)
index 에 해당하는 child component 를 가져온다.Orientation
getOrientation()
GuiLayout
의 child 배치 방향 상수를 가져온다.boolean
hasChild()
GuiLayout
에 child component 가 추가되어 있는지 여부를 가져온다.void
setBackground(int resourceId, boolean isNinepatch)
GuiLayout
의 배경 이미지를 설정한다.void
setBackground(Bitmap bitmap)
GuiLayout
의 배경 이미지를 설정한다.void
setOrientation(Orientation orientation)
GuiLayout
의 child 배치 방향 상수를 설정한다.-
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
-
-
-
-
Constructor Detail
-
GuiLayout
public GuiLayout(Orientation orientation)
GuiLayout
의 child 배치 방향 상수- Parameters:
orientation
- child 배치 방향
-
-
Method Detail
-
setOrientation
public void setOrientation(Orientation orientation)
GuiLayout
의 child 배치 방향 상수를 설정한다.- Parameters:
orientation
- child 배치 방향
-
getOrientation
public Orientation getOrientation()
GuiLayout
의 child 배치 방향 상수를 가져온다.- Returns:
- child 배치 방향
-
setBackground
public void setBackground(int resourceId, boolean isNinepatch)
GuiLayout
의 배경 이미지를 설정한다.- Parameters:
resourceId
- 배경 이미지 리소스 아이디isNinepatch
- 이미지가 늘어나는 되는 이미지인지 여부
-
setBackground
public void setBackground(Bitmap bitmap)
GuiLayout
의 배경 이미지를 설정한다.- Parameters:
bitmap
- 배경 이미지 비트맵
-
addView
public void addView(GuiView view)
GuiLayout
에 child component 를 추가한다.- Parameters:
view
- 추가할 child component
-
hasChild
public boolean hasChild()
GuiLayout
에 child component 가 추가되어 있는지 여부를 가져온다.- Returns:
- child component 가 추가되어 있으면 true, 아니면 false
-
getChildArray
public GuiView[] getChildArray()
GuiLayout
에 추가된 child component 의 배열을 가져온다.- Returns:
- child component 의 배열
-
getChildAt
public GuiView getChildAt(int index)
index 에 해당하는 child component 를 가져온다.- Parameters:
index
- 가져올 child component 의 index- Returns:
- index 에 해당하는 child component
-
getChild
public GuiView getChild(java.lang.String id)
id 에 해당하는 child component 를 가져온다.- Parameters:
id
- 가져올 child component 의 id- Returns:
- id 에 해당하는 child component
-
-