-
Notifications
You must be signed in to change notification settings - Fork 25
Example 5
M. Emre Davarcı edited this page Jun 4, 2017
·
4 revisions
/*
* rl is the layout we are working on.
*/
RelativeLayout rl = (RelativeLayout) findViewById(R.id.myLayout) ;
Noty.init(MainActivity.this, "You have 1 new message!", rl,
Noty.WarningStyle.ACTION)
.setActionText("READ")
.setWarningBoxBgColor("#66b3ff")
.setWarningTappedColor("#80bfff")
.setWarningBoxPosition(Noty.WarningPos.TOP)
.setWarningInset(0,0,0,0)
.setWarningBoxRadius(0,0,0,0)
.setAnimation(Noty.RevealAnim.SLIDE_DOWN, Noty.DismissAnim.BACK_TO_TOP, 400,400)
.show();