简易版小恐龙 Posted on 2017-08-16 | 别人的代码,目前还在研究。12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 ... Read more »
高级技巧 Posted on 2017-08-15 | 学习目的:1.定制自己的日志工具 2.调试android程序 新建LogUitl类1234567891011121314151617181920212223242526272829303132333435public class LogUitl{ public static final ... Read more »
高级技巧 Posted on 2017-08-15 | 学习目的:1.全局获取Context技巧(活动本身就是一个context对象)2. 使用INtent传递对象(serializable与Parcclablc方式)创建MyApplication类继承Application123456789public clss MyApplication exten ... Read more »
博客恢复教程 Posted on 2017-08-15 | 搭建hexo和配置next主题 本地搜索服务 一键部署 背景动画 next主题样式 next+网易云 next+畅言 可能出现的错误及原因:网络原因(大部分) 主题配置错误(重来花的的时间《改错) git版本过低(网上说的 差点被坑) Read more »
coolweather4 Posted on 2017-08-15 | 学习目的:1.显示天气信息 2.编写天气界面 1.显示天气信息(由于和风天气返回的json数据很复杂,用JSONObject解析很麻烦,这里借助Gson解析)回顾返回数据的大致格式123456789101112{ "HeWeather":[ { "status" ... Read more »
GIT 版本控制 hexo blog Posted on 2017-08-15 | In git | 完整教程:廖雪峰 mkdir 文件名 cd 文件名 pwd //显示当前路径 git init 修改 git add . git commit -m “version” 版本回退 git log //所有提交的commit 版本 git status //当前状态 git diff // ... Read more »
coolweather2 Posted on 2017-08-14 | 学习目的:1.遍历全国省市县数据(获取json数据 处理返回的json数据) 1.遍历全国省市县数据 在Util包新建HttpUtil类 获取json数据123456789101112import okhttp3.OkHttpClient;import okhttp3.Request;public ... Read more »
coolweather3 Posted on 2017-08-14 | 学习目的:1.布局+数据库 显示市级界面 县级界面 省级界面 新建choose_area.xml 12345678910111213141516171819202122232425262728293031323334353637<LinearLayout xmlns:android= ... Read more »
coolweather Posted on 2017-08-13 | 学习目的:1.功能需求和可行性分析 2.加入创建数据库和表的各项配置 1.功能需求和可行性分析 可以罗列出全国的省 市 县 可以查看全国任意城市的天气信息 可以自由切换城市,去看其他城市天气 提供手动更新和后台自动更新天气功能 有API key(key=bf79cd24a8494d0eb2c7 ... Read more »
materialtest6(最佳UI体验) Posted on 2017-08-11 | 学习目的:3.可折叠的标题栏(逻辑编写) 4.充分利用系统状态栏空间(上拉时背景图与状态栏融合)FruitActivity12345678910111213141516171819202122232425262728293031323334353637383940414243444546public ... Read more »