每次都拖到一个星期最后一天写,这个星期的提前一下
任务
- 继续提问和运营账号主页需求
提问和运营账号主页需求
接口数据已经对接上,大概已经完成90%,下个星期再交互细节优化一下
Deepin重新安装输入法
公司的电脑一直都没有关过,这几天发现sougou输入法占了3个多G的内存,电脑关机重启了还是解决不了,sogo输入法在使用的时候内存会一直上升,网上查了一下,也有人遇到一样的问题,但是没有解决方法,那只能选择其它输入法了
- 卸载sogou,一开始使用的系统的管理软件卸载,发现连系统的输入图标都不见了,然后就有了下面命令,卸载Sogou,fcitx相关的所有配制
$ killall fcix*
$ cd ~/.config
$ sudo rm -r sogou*
$ sudo dpkg -l sogou* //查看系统还有没有sogou相关的安装软件
$ sudo apt-get purge sogoupinyin
$ sudo apt-get purge fcitx* //卸载fcitx,并删除配制文件
$ sudo reboot
- 安装中州韵输入法,基于Fcitx输入法框架的fcitx-rime
安装rime
sudo apt install fcitx-rime.
接下来就是安装仓库中的librime-data-wubi.
sudo apt install librime-data-wubi
在rime输入法列表中显示五笔
$ gvim .config/fcitx/rime/default.yaml
在schema_list:中,添加
schema_list:
#- schema: luna_pinyin
# - schema: cangjie5
#- schema: luna_pinyin_fluency
- schema: luna_pinyin_simp
# - schema: luna_pinyin_tw
#- schema: wubi86
- schema: wubi_pinyin
安装Fiddler
- 安装Mono
Mono是一个可以跨平台跑.NET的程序应用,安装命令很简单,输入:
sudo apt-get install mono-complete
- 下载Fiddler for Mono
打开http://fiddler.wikidot.com/mono,下载最新版的Fiddler并解压到任何想放置的地方 - 运行Fiddler
$ mono Fiddler.exe
Android字体样式设置
SpannableString contentSpannable = new SpannableString(mContext.getString(R.string.gq_format_question_des,groupQuestionItem.content));
ForegroundColorSpan contentFCSpan = new ForegroundColorSpan(Color.parseColor("#bbbbbb"));
contentSpannable.setSpan(contentFCSpan, 0, 5, Spanned.SPAN_INCLUSIVE_EXCLUSIVE);
Android 针对不同的个数,显示不同的文案
<plurals name="orange">
<item quantity="one"> Have an orange</item>
<item quantity="other">Have %d oranges</item>
</plurals>
String[] 和List[]相互转化
- List[] to String[]
List[] friendsNames;
String frnames[]=friendsNames.toArray(new String[friendsNames.size()]);
- String[] to List[]
String[] array = {"java", "c"};
List<String> list = Arrays.asList(array);
接口传递Post参数body和query区别
- body: 需要使用json来包装post参数
- query: 不用json包装,直接传
onSaveInstanceState和onRestoreInstanceState使用
考虑到系统可能因为内存不足把当前的Activity收到掉,所以要使用这两个方法对当前的状态进行保存和恢复,onSaveInstanceState将会在onStop之前执行,onRestoreInstanceState是在onCreate之后执行的
vim配制
参考
https://stackoverflow.com/questions/4042434/converting-arrayliststring-to-string-in-java
网友评论