奶霸000

导航

2016年12月28日 #

android 保存Bitmap 到本地 哦

摘要: public String saveImage(Bitmap bmp) { File appDir = new File(Environment.getExternalStorageDirectory(), "Boohee"); if (!appDir.exists()) { appDir.mkdir(); } String fileName = System... 阅读全文

posted @ 2016-12-28 18:05 奶霸000 阅读(514) 评论(0) 推荐(0) 编辑

2016年12月27日 #

setProgressBarIndeterminateVisibility(true);

摘要: 此为在标题栏 上 设置一个loading 圈 实用。。。 阅读全文

posted @ 2016-12-27 09:49 奶霸000 阅读(308) 评论(0) 推荐(0) 编辑

2016年12月22日 #

android 指示器 tablatyout

摘要: <android.support.design.widget.TabLayout/>android 材料设计中新出的控件 package com.weavey.loadinglayout;import android.os.Bundle;import android.support.design.w 阅读全文

posted @ 2016-12-22 18:04 奶霸000 阅读(1046) 评论(0) 推荐(0) 编辑

android 加载中、无网络、无数据、出错 四种状态的代码封装

摘要: package com.weavey.loading.lib;import android.content.Context;import android.content.res.TypedArray;import android.support.annotation.ColorRes;import 阅读全文

posted @ 2016-12-22 15:34 奶霸000 阅读(727) 评论(0) 推荐(0) 编辑

2016年12月21日 #

android editText 监听事件

摘要: 在软键盘中注意 在监听的 edittext中 使用android:imeOptions属性的时候,一定要对EditText设置 android:inputType 或者 设置 android:singleline=”true” 在activity_main.xml文件中,定义了8个EditText, 阅读全文

posted @ 2016-12-21 21:58 奶霸000 阅读(2691) 评论(0) 推荐(0) 编辑

2016年12月16日 #

android 开发中fragment 遇到的问题

摘要: http://yifeng.studio/2016/12/15/android-fragment-attentions/ 1、不要轻易在 fragment中引用 getactivity(); 解决方案 1.判断getacitvity()!=null 和 this.isadd(); 2.用这个里面的c 阅读全文

posted @ 2016-12-16 17:00 奶霸000 阅读(408) 评论(0) 推荐(0) 编辑

2016年12月15日 #

解决 主界面mainactivity 中fragment弹框把下面tab选项卡 顶上去的方案

摘要: android:windowSoftInputMode="adjustPan" android:configChanges="screenSize|keyboardHidden|orientation" 阅读全文

posted @ 2016-12-15 10:13 奶霸000 阅读(204) 评论(0) 推荐(0) 编辑

2016年12月14日 #

Glide 小知识点

摘要: 阅读全文

posted @ 2016-12-14 11:00 奶霸000 阅读(99) 评论(0) 推荐(0) 编辑

2016年11月11日 #

java string.format()

摘要: String text=String.format("$%1$s 门市价:¥%2$s",18.6,22);$18.6 门市价:¥22 阅读全文

posted @ 2016-11-11 11:02 奶霸000 阅读(246) 评论(0) 推荐(0) 编辑

android recyclerview 更新ui

摘要: http://blog.csdn.net/leejizhou/article/details/51179233 阅读全文

posted @ 2016-11-11 09:39 奶霸000 阅读(185) 评论(0) 推荐(0) 编辑