7a2f17a4ec4329ca32e6428d31fde7f6df411a88.svn-base
508 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.ivt.android.me.bean;
public interface SeeLiveView {
/**
* 更新房间聊天消息列表
*/
void notifyMsg();
/**
* 更新蜜糖
*/
void notifyMetang();
/**
* 更新房间人数
*/
void notifyNums();
/**
* 显示房间聊天输入框
*/
void showEdit(boolean b);
void initHeadView();
/**
* 关闭软件盘
*/
void softKeyB();
void SetOwnerInfo();
void IsAddtent(String ownerId);
void AddAddTent(UserEntity user);
void DeleAddtent(String ownerId);
}