Python2和Python3共存

方法一:

找到python2.7安装目录D:\Python27将python.exe改为 python2.exe这样就可以使用python2

找到Python3 的安装目录D:\Python36将python.exe改为python3.exe

使用

1
python2.exe -V

1
python3.exe -V

方法二:

官方的方法,推荐此方法。

python 的使用
1
py -2 -V

这样使用2.x的版本

1
py -3 -V

这样使用3.x的版本

pip的使用

使用Python2 的pip:

1
pip2 -V

或者

1
py -2 -m pip -V

使用Python3 的pip:

1
pip3 -V

或者

1
py -3 -m pip -V

环信自定义消息置顶功能

我在开发中发现没有消息置顶这个功能,然后我公司要求开发个消息置顶的功能,所以就的手动写了。环信好多功能都要自己写,消息撤回,文件夹等等

思路

我就想能不能在每个消息里面设置个标识,来区分是否是置顶的消息,然后我找了下消息实体类EMConversation。其中就有两个方法getExtField()和setExtField(“”),反正我也不管这是什么方法发,反正我就能存能取就够了。哈哈。。。

主要方法

1、getExtField();
2、setExtField(“”)

2017-06-30_151924.png

2017-06-30_152028.png

开始实战

1. 在你要添加的置顶方法,我的是ConversationListFragment类中setUpView()方法中定义的侧滑按钮
1
2
3
4
5
6
7
8
9
10
11
12
13
//置顶消息
EMConversation tobeDeleteCons = (EMConversation)conversationListView.getItemAtPosition(conversationListView.getPositionForView(view));
String isTop = tobeDeleteCons.getExtField();
//判断是否是置顶消息
if("toTop".equals(isTop)){
//取消置顶,就设置为其他的字符串
tobeDeleteCons.setExtField("false");
}else {
//把它设置为置顶的标识
tobeDeleteCons.setExtField("toTop");
}
//刷新消息列表
refresh();
2.找到数据源在添加消息前添加进列表中。我的是EaseConversationListFragment中setUpView()方法,
1
2
conversationList.addAll(loadConversationList());
conversationListView.init(conversationList);

这个是主要方法

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
/**
* load conversation list
*
* @return
+ */
protected List<EMConversation> loadConversationList(){
// get all conversations
Map<String, EMConversation> conversations = EMClient.getInstance().chatManager().getAllConversations();
onHandleEMConversation(conversations);
//添加置顶消息
List<Pair<Long, EMConversation>> topList = new ArrayList<Pair<Long, EMConversation>>();
synchronized (conversations) {
for (EMConversation conversation : conversations.values()) {
if (conversation.getAllMessages().size() != 0 && conversation.getExtField().equals("toTop")) {
topList.add(new Pair<Long, EMConversation>(conversation.getLastMessage().getMsgTime(), conversation));
}
}
}
List<Pair<Long, EMConversation>> sortList = new ArrayList<Pair<Long, EMConversation>>();
/**
* lastMsgTime will change if there is new message during sorting
* so use synchronized to make sure timestamp of last message won't change.
*/
synchronized (conversations) {
for (EMConversation conversation : conversations.values()) {
if (conversation.getAllMessages().size() != 0 && !conversation.getExtField().equals("toTop")) {
sortList.add(new Pair<Long, EMConversation>(conversation.getLastMessage().getMsgTime(), conversation));
}
}
}
try {
// Internal is TimSort algorithm, has bug
sortConversationByLastChatTime(sortList);
} catch (Exception e) {
e.printStackTrace();
}
List<EMConversation> list = new ArrayList<EMConversation>();
//添加置顶消息
for (Pair<Long, EMConversation> topItem : topList) {
list.add(topItem.second);
}
for (Pair<Long, EMConversation> sortItem : sortList) {
list.add(sortItem.second);
}
return list;
}
3.在EaseConversationAdapter中加上一些信息
1
2
3
4
5
6
7
8
9
10
EMConversation conversation = getItem(position);
//判断是否置顶,置顶改变文字
String isTop = conversation.getExtField();
if("toTop".equals(isTop)){
holder.btnToTop.setText("取消置顶");
holder.list_itease_layout.setBackgroundResource(R.drawable.ease_mm_top_listitem);
}else {
holder.btnToTop.setText("置顶");
holder.list_itease_layout.setBackgroundResource(R.drawable.ease_mm_listitem);
}

到此就改造好了

你真的会使用google搜索?

Google搜索可以说是当今世界最好的搜索工具。但你真的会使用他吗?如果你听过高级搜索语法,那就让我们一起来学习吧。

逻辑与或非操作

Google在搜索中使用 “+ ” 、“-”、“OR”(大写的)来进行搜索结果的逻辑操作。例如:使用“A”+”B”,代表搜索结果包含A和B;使用 “A”-“B”代表搜索结果包含A且不宝行B:使用“A OR B”代表搜索结果又A或者B。使用双引号代表精确的查询条件。通过这种逻辑搜索操作,可以让搜索结果尽可能的少,来帮助我们快速找到想要的结果。

模糊搜索

  • 文字匹配

Google 在搜索中使用 “”(星号)匹配任意字符。例如,你可以索搜“Android ”匹配所有类似Android Sutdio ,Android UI 等结果这对于关键词缺失的情况非常有邦族。

  • 区间通配
    Google 在搜索中使用“.. ”(两个点和一个空格)进行数字区间的通配。例如:你要查找2012年到2016年之间的Android 市场占有率,就可以通过“2012.. 2016”进行配配。

搜索语法

Google提供了一些搜索语法,让用户创建更精彩的搜索条件。

  • Site

site 指令可以搜索结果限定于某个网站中,或者某些类型的网站中。例如,使用“Android site:developer.android.com/index.hemtl” 搜索该网站下的所有关于Android 的内容。

  • Link

Link 语法可以查询所有链接到某个地址的信息。 例如:“link:www.github.com”将查询所有链接到github的URL地址

  • intitle

intitle语法可以查询网页标题栏中的信息。例如:“intitle:android ” 将查询网页标题中包含android 的所有信息。

  • inurl:pdf

inurl:pdf 语法可以快速查找所有的PDF类型网页。例如,“inutl:pdf android” 将查找所有的PDF 类型的android相关的信息。

  • @符号

@语法可以在某个社交媒体中搜索。例如:”hello world@twitter”将在Twitter上查找关于hello world 的词条。

  • $ 符号

$符号可以搜索价格。例如:”camera $400”将搜索价格为400$的camera 。

  • #符号

    -#符号可以搜索标签。例如:#throwbackthursday将搜索带有throwbackthursday标签的内容。

  • -符号

    -符号从您的搜索中排除单词。例如,”jaguar speed -car”将搜索jaguar speed但是没有car的内容

  • “”符号

“”符号 完全匹配字符,把字符放在双引号里。例如,”tallest building”,搜到tallest building这个内容,不想模糊搜索。

这些语法可以混合使用。
本文参考Android群英传2

更多请点击这里:
https://support.google.com/websearch/answer/2466433?hl=en

本文同步我的博客:https://zhouchatian.com