1.android studio, logcat cleans after app closes
answer: http://stackoverflow.com/questions/29568985/android-studio-logcat-cleans-after-app-closes
2.how to Edit Filter Configuration in android studio
answer: google
3.android mvp模式
http://blog.youkuaiyun.com/dantestones/article/details/50899235
4.git 使用中遇到一个问题
a.rebase问题
在子分支下rebase父分支,正常情况下一切rebase完成,在soucetree上该分支会出现(2↓1↑)类如此类的提示,如果按照提示在sourcetrees上进行pull和push操纵,分支就会出现多次相同的提交纪录,分支机构也不再是正常rebase下的一条直线。 此时正确操作是 git push -f 命令强推到远程分支。例如
git push -f origin HEAD:feature/product_list_ye
b.rebase有冲突情况下,在工作空间修改冲突。使用git add -u命令加入暂存区,然后继续git rebase --continue 重复这两个步骤,直到rebase成功