maven { url 'https://jitpack.io' }
//版本号
def nice_ktx = "v1.0.4"
//常用的扩展函数
implementation("com.github.simplepeng.NiceKTX:nice_ktx:$nice_ktx")
//EventBus的扩展
implementation("com.github.simplepeng.NiceKTX:eventbus_ktx:$nice_ktx")
//协程的扩展
implementation("com.github.simplepeng.NiceKTX:coroutine_ktx:$nice_ktx")
//Material控件库的扩展
implementation("com.github.simplepeng.NiceKTX:material_ktx:$nice_ktx")
//RecyclerView的扩展
implementation("com.github.simplepeng.NiceKTX:recyclerview_ktx:$nice_ktx")
//ViewPager的扩展
implementation("com.github.simplepeng.NiceKTX:viewpager_ktx:$nice_ktx")
startActivity() //跳转Activity
onAnimationChange() //监听动画变化的回调
onAnimationStart() //动画开始的回调
doOnAnimationEnd() //动画结束的回调
doOnAnimationRepeat() //动画循环的回调
saveFile() //保存位图到本地文件
base64() //获取位图的base64
String.toBimtp() //base64转Bitmap
scale(sx,sy) //按比例缩放Bitmap
scale(newWidth,newHeight) //按大小缩放Bitmap
addWatermark() //添加水印
isTure //是否为 true
isFalse //是否为 false
getSerializableExtraCompat() //getSerializableExtra的兼容写法
getParcelableExtraCompat() //getParcelableExtra的兼容写法
Calendar.year
Calendar.month
Calendar.dayOfMonth
Calendar.daysInMonth //当月有多少天
Calendar.dayOfYear
Calendar.hourOfDay //24小时制的hour
Calendar.hour //12小时制的hour
Calendar.minute
resetToMonthStart() //重设到月初
isSameDay() //是否为同一天
drawTextOnTop() //画文字-以顶部为基准线
drawTextOnBottom() //画文字-以底部为基准线
drawTextOnCenter() //画文字-以中心点为基准
isNotNullOrEmpty() //判断字符串不是null也不是empty
isConnected() //网络是否连接
Context.activity //从Context获取Activity
Context.screenWidth //屏幕宽度
Context.screenHeight //屏幕高度
openWeb() //打开网页
sendEmail() //发送Email
openMarket() //打开应用商店,推荐使用我的另外一个开源库:[MarketHelper](https://github.com/simplepeng/MarketHelper)
copyText() //复制文本
Long.toDateString() //毫秒转时间字符串
String.toMillis() //时间字符串转毫秒
Boolean?.orDefault() //布尔值的默认值填充
String?.orDefault() //字符串的默认值填充
T?.orDefault() //默认值填充
(Int/Long/Double/Float).dp //dp 转 px
(Int/Long/Double/Float).sp //sp 转 px
(Context/Fragment/Dialog/View/Resources).dp2px() //
(Context/Fragment/Dialog/View/Resources).px2dp() //
isEmpty() //EditText的文本为空
setSelectionToEnd() //将光标移动至末尾
setTextAndSelectionToEnd() //设置文字,并将将光标移动至末尾
listenerTextChange() //监听文本变化
setScaleImageResource() //设置缩放的资源图
getSerializableExtraCompat() //getSerializableExtra的兼容方法
getParcelableExtraCompat() //getParcelableExtra的兼容方法
textHeight //文本高度
textAscentHeight //文本ascent高度
String?.md5 //字符串转MD5
File?.md5 //文件的MD5
String.sha1 //字符串转sha1
String.sha256 //字符串转sha256
String.sha512 //字符串转sha512
onSeekBarChange() //setOnSeekBarChangeListener的扩展函数
shape() //设置View的背景
halfRoundRect() //圆角矩形-圆角radius为View高度的一半)
roundRect() //圆角矩形
gradientShape() //设置渐变的shape
halfGradientShape() //设置渐变的shape,带圆角,圆角为View高度的一半
clearText() //清空文本
setTextColor("#000000") //设置文字颜色
toast() //短吐司
longToast() //长吐司
Int.toUri() //将res-raw目录下的资源转换成Uri
Context.rawIdToUri() //将res-raw目录下的资源转换成Uri
gone() //隐藏View
visible() //显示View
invisible() //隐藏View,保留位置
getActivity() //从View的Context中获取Activity
click() //点击事件
singleClick() //防抖动单击事件
loadAsset() //加载asset目录下的html文件
callJsMethod() //调用js的方法
registerOnCreate() //在onCreate中注册事件,自动在onDestroy中注销事件
registerOnStart() //在onStart中注册事件,自动在onStop中注销事件
registerOnResume() //在onResume中注册事件,自动在onPause中注销事件
safeRegister() //安全调用注册方法
safeUnregister() //安全调用注销方法
linear()
grid()
staggered()
removeAllItemDecoration() //删除所有ItemDecoration
scrollToEnd() //滚动到末尾
scrollToStart() //滚动到开始
ViewPagerKT
//同时支持ViewPage2
nextPage() //下一页
prePage() //上一页
canNextPage //是否可以切换到下一页
canPrePage //是否可以切换到上一页
LifecycleOwner.launchOnCreate() //自动在onDestroy取消Job
LifecycleOwner.launchOnStart() //自动在onStop取消Job
LifecycleOwner.launchOnResume() //自动在onPause取消Job
BottomSheetDialogFragment.behavior
BottomSheetDialogFragment.isDraggable
BottomSheetDialog.isDraggable
- v1.0.4: 大改,升级gradle,迁移到libs.toml
- v1.0.3:更新gradle版本,适配java11
- v1.0.2:增加
EventBus
安全调用方法,上传至jitpack
- v1.0.1:去除
BuildConfig.class
- v1.0.0:首次上传