public interface BubbleGroup
Modifier and Type | Field and Description |
---|---|
static int |
INVALID_BUBBLE_ID
标记无效的bubble id
|
Modifier and Type | Method and Description |
---|---|
int |
addBubble(BubbleOptions options)
添加一个气泡
|
void |
clearBubbleGroup()
清空多气泡组
|
boolean |
containsBubble(int id)
根据id查找气泡
|
java.util.List<java.lang.Integer> |
getBubbleIds()
得到多气泡的id组
|
boolean |
remove(int id)
根据气泡id,移除一个气泡
|
boolean |
updateBubble(int id,
BubbleOptions options)
更新一个气泡
|
static final int INVALID_BUBBLE_ID
int addBubble(BubbleOptions options)
options
- 气泡选项boolean remove(int id)
id
- 需要移除气泡idvoid clearBubbleGroup()
boolean updateBubble(int id, BubbleOptions options)
id
- 需要更新气泡的id; 若id不存在则返回falseoptions
- 更新的BubbleOptionsboolean containsBubble(int id)
id
- 气泡idjava.util.List<java.lang.Integer> getBubbleIds()