摘要: 文章目录 [隐藏] 一,新建代码库 二,配置 三、增加/删除文件 四、代码提交 五、分支 六、标签, 七、查看信息 八、远程同步 九、撤销 十、其他 一,新建代码库 1,在当前目录下新建一个git代码库 2,新建一个目录将其初始化为git代码库 3,git clone 远程代码库 二,配置 1,Gi 阅读全文
posted @ 2019-04-19 14:25 xiao_pengs 阅读(204) 评论(0) 推荐(0)
摘要: 欢迎关注本人Github:https://github.com/itgoyo 里边会时刻更新一些最新最潮的技术文章 2017-5-18 Google I/O 大会指定Kotlin成为Android的官方开发语言 本项目地址:https://github.com/kotlinandroid/kotli 阅读全文
posted @ 2017-06-17 17:03 xiao_pengs 阅读(822) 评论(0) 推荐(0)
摘要: package code.suibianchou.com.custormview2;import android.annotation.SuppressLint;import android.content.Context;import android.graphics.Rect;import an 阅读全文
posted @ 2017-05-18 12:35 xiao_pengs 阅读(338) 评论(0) 推荐(0)
摘要: public class CustomViewPager extends ViewPager{ /**** * 防止ViewPage滑动 */ private boolean isCanScroll = false; //设置ViewPage是否可滑动 public CustomViewPager( 阅读全文
posted @ 2017-05-04 12:06 xiao_pengs 阅读(363) 评论(0) 推荐(0)
摘要: public class TimeCount extends CountDownTimer { private static final int TIME_TASCK = 1000; private Button button; private Context context; public Tim 阅读全文
posted @ 2017-05-04 11:58 xiao_pengs 阅读(1677) 评论(0) 推荐(0)
摘要: public static void settingDrawableTop(Context context, TextView view , int resourcesDrawable, int resourcesString){ view.setVisibility(View.VISIBLE); 阅读全文
posted @ 2017-05-04 11:53 xiao_pengs 阅读(1475) 评论(0) 推荐(0)
摘要: /** * 设置字符串中的数字显示红色 * @param str */public static void setNumberTextColor(String str,TextView textView,Context c,int resourcesID){ char[] s = str.toCha 阅读全文
posted @ 2017-05-04 11:50 xiao_pengs 阅读(1368) 评论(0) 推荐(0)
摘要: http://blog.csdn.net/u014231734/article/details/41913775 原地址 阅读全文
posted @ 2017-05-04 11:47 xiao_pengs 阅读(116) 评论(0) 推荐(0)