-
Notifications
You must be signed in to change notification settings - Fork 25
Example 2
M. Emre Davarcı edited this page Jun 4, 2017
·
5 revisions
/*
* rl is the layout we are working on.
*/
RelativeLayout rl = (RelativeLayout) findViewById(R.id.myLayout) ;
Noty.init(MainActivity.this, "Download completed.", rl,
Noty.WarningStyle.ACTION)
.setActionText("OPEN")
.setWarningBoxBgColor("#ff5c33")
.setWarningTappedColor("#ff704d")
.setWarningBoxPosition(Noty.WarningPos.BOTTOM)
.setAnimation(Noty.RevealAnim.FADE_IN, Noty.DismissAnim.BACK_TO_BOTTOM, 400,400)
.show();