Back to project page MightyToast.
The source code is released under:
Apache License
If you think the Android project MightyToast listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.urmwsk.mightytoast; //from w ww . j a v a 2 s .c om public class MightyToast { private MightyStyle style = MightyStyle.INFO; private MightyType type = MightyType.TAP_TO_DISMISS; private String message; private int color; public MightyStyle getStyle() { return style; } public void setStyle(MightyStyle style) { this.style = style; } public MightyType getType() { return type; } public void setType(MightyType type) { this.type = type; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public void setColor(int color) { this.color = color; } public int getColor() { return color; } }