IconInfo.java
1.27 KB
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
41
42
43
44
45
46
47
48
49
50
package com.cnlive.share.data;
/**
* Created by Lynn on 2018/8/23.
*/
public class IconInfo {
public static final String WJJ_FRIEND = "wjj_friend";//网家家好友
public static final String WJJ_CIRCLE = "wjj_circle";//网家家生活圈
public static final String WECHAT_FRIEND = "weChat_friend";//微信好友
public static final String WECHAT_CIRCLE = "weChat_circle";//微信朋友圈
public static final String QQ = "qq";//qq
public static final String WEBO = "webo";//微博
public static final String BROWSER = "browser";//浏览器打开
public static final String REPORT = "report"; //举报
public static final String DOWNLOAD_ALBUM_IMG = "down_album_img";
private String id;
private String title;
private int icon;
public IconInfo(String id, String title, int icon) {
this.id = id;
this.title = title;
this.icon = icon;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getIcon() {
return icon;
}
public void setIcon(int icon) {
this.icon = icon;
}
}