上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 46 下一页
摘要: 方法1:祖先加高法 //不常用,不能适应页面的快速变化 如果一个元素要浮动,那么它的祖先元素一定要有高度。有高度的盒子,才能关住浮动。 只要浮动在一个有高度的盒子中,那么这个浮动就不会影响后面的浮动元素。所以就是清除浮动带来的影响了。 方法2:clear:both; //最简单,表示自己的内部元素, 阅读全文
posted @ 2019-04-22 21:24 yongfengnice 阅读(524) 评论(0) 推荐(0) 编辑
摘要: long number = 1234567890; NumberFormat decimalFormat = new DecimalFormat("###,###,###,###,###"); String numStr = decimalFormat.format(number);//numStr的结果为 1,234,567,890 阅读全文
posted @ 2019-04-22 14:48 yongfengnice 阅读(754) 评论(0) 推荐(0) 编辑
摘要: editText = findViewById(R.id.edit_text); editText.setFilters(new InputFilter[]{editText.getFilters()[0], mInputFilter}); //这里的editText.getFilters()[0]是为了保留上面的xml设置的LengthFilter同时有效 InputFilter mIn... 阅读全文
posted @ 2019-04-19 18:37 yongfengnice 阅读(4325) 评论(0) 推荐(1) 编辑
摘要: 即设置textCursorDrawable为@null,这样光标就默认显示字体的颜色,也可以设置一个自定义的drawable。 阅读全文
posted @ 2019-04-18 16:12 yongfengnice 阅读(5577) 评论(0) 推荐(0) 编辑
摘要: Web前端css知识点的简单概括如下,方便记忆。 1.字体,背景(font-style,font-weight,font-size/line-height,font-family。。。background-color,background-image,background-position。。。) 阅读全文
posted @ 2019-04-16 16:29 yongfengnice 阅读(243) 评论(0) 推荐(0) 编辑
摘要: public class CrashApp extends Application { public static final String TAG = "CrashApp"; @Override protected void attachBaseContext(Context base) { super.attachBaseContext(base); new ... 阅读全文
posted @ 2019-04-11 16:17 yongfengnice 阅读(3875) 评论(0) 推荐(0) 编辑
摘要: public class UploadImageBody extends RequestBody { private File mFile; private String mContentType; private ProgressListener mListener; @Override public MediaType contentType() { retu... 阅读全文
posted @ 2019-04-03 19:08 yongfengnice 阅读(763) 评论(0) 推荐(0) 编辑
摘要: public void showWebViewContent(Context context, String content) { if (!TextUtils.isEmpty(content)) { Matcher matcher = Pattern.compile("]*>([\\s\\S]*)").matcher(content); if (matcher.fin... 阅读全文
posted @ 2019-03-27 18:29 yongfengnice 阅读(4534) 评论(0) 推荐(0) 编辑
摘要: gradle文件的配置: defaultConfig{ //定义一个String类型的变量,变量名为APP_ID_2,变量值取至于APP_ID_2_VALUE buildConfigField "String", "APP_ID_2", "\"${APP_ID_2_VALUE}\"" manifestPlaceholders = [ APP_ID:"${A... 阅读全文
posted @ 2019-03-18 16:16 yongfengnice 阅读(970) 评论(0) 推荐(0) 编辑
摘要: 1.doOnSubscribe是事件被订阅之前(也就是事件源发起之前)会调用的方法,这个方法一般用于修改、添加或者删除事件源的数据流。2. doOnNext是观察者被通知之前(也就是回调之前)会调用的方法,说白了就是最终回调之前的前一个回调方法,这个方法一般做的事件类似于观察者做的事情,只是自己不是 阅读全文
posted @ 2019-03-18 15:30 yongfengnice 阅读(6938) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 46 下一页