你這個人真的很怪.

2016-11-30
GitHub 排名前 100 的安卓、iOS项目简介

GitHub logo

Android 项目

排名完全是根据 GitHub 搜索 Java 语言选择 (Best Match) 得到的结果, 然后过滤了跟 Android 不相关的项目, 所以排名并不具备任何官方效力, 仅供参考学习, 方便初学者快速了解当前一些流行的 Android 开源库。

阅读此文

2016-09-19
Git 学习记录

git 查看一个文件的历史记录

1.git log

查看一个文件的改动历史

git log --pretty=oneline 文件名

运行实例

Administrator@MS-20160715YRXA MINGW32 /e/Work/blog/bingofan.github.io (hexo)
$  git log --pretty=oneline _config.yml
06e6afb1c695f54620ada8523c915dbb62450d0e Search&Share : Remove bdshare Fix https&http request.
020b0d9a1fe4145093319a1f718d3a4a7b8d81e7 Add : Highlight Code Block Function
fb2e4ab6554d3ebed813c7c94d5b1fedd5195317 +) HighLight : Add highlight.js code highlight style.
ae75519920a22b40093af0c0c95f81d56a47d379 FistCommit : Upload hexo file
阅读此文

2016-09-19
Android appcompat-v7 包样式

问题1 listview文字颜色变浅

今天遇到一个超级郁闷的问题
本来是在网上下载了一个Demo小程序,想研究一下RecyclerView,然后写一个简单的listview
原本下载的程序运行出来是这样的:

RecyclerView

但是我自己编写的Demo运行出来却是这样的

阅读此文

2016-09-06
Hexo使用笔记

新建文章

hexo new [layout] <title>

[layout]
post source/_posts
page source
draft source/_draft

前置申明

title: Hexo使用笔记
tags: Hexo
categories: Hexo
toc: true
description: >-
    记录平时常用的一些Hexo命令.
  • title 文章标题
  • tags 文章标签
  • categories 文章分类
  • toc 是否生成目录
  • description 文章摘要
  • layout 布局
  • date 创建时间
  • updated 修改时间
  • comments 是否开启评论,默认为true
  • permalink 文章永久链接
阅读此文

2016-09-01
Java 中的类型转换

String 和 int 转换

int >>> String

三种方式 按效率排序

1.String s = Integer.toString(i);

2.String s = String.valueOf(i);

3.String s = "" + i;

阅读此文

2016-08-12
安卓微信朋友圈分享功能

准备工作

阅读微信的官方文档 在官方文档的内容里罗列了微信WPI开发的基本步骤.
1.申请你的AppID
2.下载微信终端开发工具包
SDK的下载
3.搭建开发环境
4.在代码中使用开发工具包
这里有一个Demo程序蛮重要的,很简练.

阅读此文