Toast
2018-12-13 本文已影响0人
平时学习知识点记录
https://github.com/JohnPersano/SuperToasts
用法
implementation'com.github.johnpersano:supertoasts:2.0'
SuperActivityToast.create(this, new Style(), Style.ANIMATIONS_SCALE)
.setButtonText("UNDO")
// .setButtonIconResource(R.drawable.ic_undo)
// .setOnButtonClickListener("good_tag_name", null, onButtonClickListener)
.setProgressBarColor(Color.WHITE)
.setText("请填写完整后再试")
.setDuration(Style.DURATION_LONG)
.setFrame(Style.ANIMATIONS_FLY)
.setColor(PaletteUtils.getSolidColor(PaletteUtils.MATERIAL_RED))
.setAnimations(Style.ANIMATIONS_POP).show();
https://github.com/getActivity/ToastUtils