摘要:
//checkBox自定义禁用样式 .el-checkbox__input.is-disabled + .el-checkbox__label { color: #808080 !important; } .el-checkbox__input.is-disabled.is-checked + .e 阅读全文
摘要:
//仅供参考hdpi 72x72 xhdpi 96x96 xxhdpi 144x144 xxxhdpi 192x192 阅读全文
摘要:
@RequiresApi(Build.VERSION_CODES.N) @OnClick(R.id.search, R.id.start_data, R.id.end_data) open fun onViewClicked(v: View?) { when (v?.id) { R.id.start 阅读全文
摘要:
defaultConfig { 。。。 //解决库冲突 multiDexEnabled true } dependencies{ //解决库重复 implementation 'com.android.support:multidex:1.0.3' } 阅读全文
摘要:
## 官网搬运 https://github.com/ragunathjawahar/android-saripaar ## 导入 dependencies { compile 'com.mobsandgeeks:android-saripaar:2.0.3' } allprojects { rep 阅读全文
摘要:
github地址 https://github.com/CymChad/BaseRecyclerViewAdapterHelper/blob/master/readme/0-BaseRecyclerViewAdapterHelper.mdallprojects { repositories { .. 阅读全文
摘要:
github链接 https://github.com/CarGuo/GSYVideoPlayer github有时候死活进不去修改dns也不行 记录一下 以备不时之需(其实就是搬运...小声bb)[dog] 1.使用 allprojects { repositories { ... maven { 阅读全文
摘要:
//这一句得写在showAsDropDown的前面 不然不起作用 popupWindow.setOutsideTouchable(true); popupWindow.showAsDropDown(showView); 阅读全文
摘要:
//查看提交日志git log --pretty=oneline --abbrev-commit//给历史提交打taggit tag -a v0.1 -m "说明" e628164//克隆指定tag的代码git clone -b tagName git地址//git创建tag git tag "ta 阅读全文
摘要:
public static String getFileBase64(String url) { try { File file = new File(url); FileInputStream inputFile = new FileInputStream(file); byte[] buffer 阅读全文