If you think the Android project turbo-editor listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2014 Vlad Mihalachi//www.java2s.com
*
* This file is part of Turbo Editor.
*
* Turbo Editor is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Turbo Editor is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/package sharedcode.turboeditor.util;
import android.content.Context;
import android.support.annotation.NonNull;
import android.widget.Toast;
/**
* Helper class with utils related to toasts (no bacon.)
*
* @author Artem Chepurnoy
*/publicclass ToastUtils {
/**
* Shows toast message with given message shortly.
*
* @param text message to show
* @see #showLong(android.content.Context, CharSequence)
*/
@NonNull
publicstatic Toast showShort(@NonNull Context context, @NonNull CharSequence text) {
return show(context, text, Toast.LENGTH_SHORT);
}
@NonNull
publicstatic Toast showShort(@NonNull Context context, int stringRes) {
return showShort(context, context.getString(stringRes));
}
/**
* Shows toast message with given message for a long time.
*
* @param text message to show
* @see #showShort(android.content.Context, CharSequence)
*/
@NonNull
publicstatic Toast showLong(@NonNull Context context, @NonNull CharSequence text) {
return show(context, text, Toast.LENGTH_LONG);
}
@NonNull
publicstatic Toast showLong(@NonNull Context context, int stringRes) {
return showLong(context, context.getString(stringRes));
}
@NonNull
privatestatic Toast show(@NonNull Context context, CharSequence text, int duration) {
Toast toast = Toast.makeText(context, text, duration);
toast.show();
return toast;
}
}