@@ -54,7 +54,7 @@ public static void ok(Context context, String msg) {
5454
5555 @ TargetApi (Build .VERSION_CODES .JELLY_BEAN ) public static void ok (Context context , String msg , Iconify .IconValue iconValue ) {
5656 LayoutInflater myInflater = LayoutInflater .from (context );
57- View view = myInflater .inflate (R .layout .toast_ok , null );
57+ View view = myInflater .inflate (R .layout .toast_ok_icon , null );
5858
5959 Button button = (Button ) view .findViewById (R .id .button );
6060 button .setText (msg );
@@ -86,7 +86,7 @@ public static void error(Context context, String msg) {
8686
8787 @ TargetApi (Build .VERSION_CODES .JELLY_BEAN ) public static void error (Context context , String msg , Iconify .IconValue iconValue ) {
8888 LayoutInflater myInflater = LayoutInflater .from (context );
89- View view = myInflater .inflate (R .layout .toast_error , null );
89+ View view = myInflater .inflate (R .layout .toast_error_icon , null );
9090
9191 Button button = (Button ) view .findViewById (R .id .button );
9292 button .setText (msg );
@@ -118,7 +118,7 @@ public static void info(Context context, String msg) {
118118
119119 @ TargetApi (Build .VERSION_CODES .JELLY_BEAN ) public static void info (Context context , String msg , Iconify .IconValue iconValue ) {
120120 LayoutInflater myInflater = LayoutInflater .from (context );
121- View view = myInflater .inflate (R .layout .toast_info , null );
121+ View view = myInflater .inflate (R .layout .toast_info_icon , null );
122122
123123 Button button = (Button ) view .findViewById (R .id .button );
124124 button .setText (msg );
0 commit comments