androidDemoCode

安卓sourceDemo

标签(空格分隔): 未分类


1.RecyclerViewHeader

androidDemoCode_第1张图片
recycleviewHeader.png

渐变的 一个RecyclerViewHeader

运行了感觉还可以

实际还是不行的,只是通过attch在RecyclerView上添加一个东西而已
  1. RecyclerViewHeader

真正好用的还是这个
https://github.com/cundong/HeaderAndFooterRecyclerView

不改什么东西,也不自定义view还是使用原来的recyclerview,只是通过HeaderAndFooterRecyclerViewAdapter和一个RecyclerViewUtils,就可以实现add。很方便

例子
这个adapter就是之前的不加header和footer的view

 mHeaderAndFooterRecyclerViewAdapter=new HeaderAndFooterRecyclerViewAdapter(adapter);
    menuRecycle.setAdapter(mHeaderAndFooterRecyclerViewAdapter);
    RecyclerViewUtils.setHeaderView(menuRecycle,new MenuHeader(getActivity()));

2.ubuntu设置 ssh密钥登陆配置

2.1 http://blog.sina.com.cn/s/blog_62d719ef0100gu3w.html

2.2 http://www.jianshu.com/p/1fdcd9d9cb2f

主要依据使用2.1
注意没有 ssh-copy-id 的要用brew install ssh-copy-id 安装,或者其他方式安装
不用设置key的密码 参考2.2方式生成密钥
需要注意 配置成功后 登陆时 直接用 ssh 加 config tag来登陆就行

SSH protocol version 2,建议使用DSA来建立authentication。

ssh-copy-id的 运用
如果ssh的端口不是22,可用下面命令 这个端口是23
ssh-copy-id -i ~/.ssh/id_rsa.pub -p 23 jifeng@jifeng03

Host server  #别名,域名缩写
HostName sever.com  #完整的域名
Port 22 #默认是22
User username  #登录该域名使用的账号名
IdentityFile ~/.ssh/my_rsa #私钥文件的路径

ssh登录了方法为
# 登录刚才设置的别名服务器
ssh server

启动ssh key登陆

/etc/sshd/sshd_config 修改该文件中的配置
PasswordAuthentication no #关闭密码认证,关闭后不能通过密码登录
PubkeyAuthentication yes # 打开key证书认证的登录方式
ChallengeResponseAuthentication no #key认证必须关闭此认证,打开的话可以尝试任何的密码认证
AuthorizedKeysFile .ssh/authorized_keys #设置key文件存放的地址

增量更新 hotpath


常用的
http://blog.csdn.net/qq_25943493/article/details/51463884
一个很好的常用技术简介


1.Nuwa,支持的系统很多,但是很坑,gradle版本有显示,要么就需要自己编译 gradle plugin ,做相应适配,至今不会,,还有会出现环境变量找不到的问题,都配置了,就是坑
2.Dexposed 局限性太多,放弃,版本支持的少

你可能感兴趣的:(androidDemoCode)