Show executing cleanup

This commit is contained in:
M66B
2019-08-01 10:04:56 +02:00
parent bcb165db59
commit c72e752a43
2 changed files with 4 additions and 7 deletions

View File

@@ -13,11 +13,11 @@ public class ToastEx extends Toast {
super(context);
}
public static Toast makeText(Context context, int resId, int duration) throws Resources.NotFoundException {
public static ToastEx makeText(Context context, int resId, int duration) throws Resources.NotFoundException {
return makeText(context, context.getText(resId), duration);
}
public static Toast makeText(Context context, CharSequence text, int duration) {
public static ToastEx makeText(Context context, CharSequence text, int duration) {
ToastEx toast = new ToastEx(context);
LayoutInflater inflater = LayoutInflater.from(context);
View view = inflater.inflate(R.layout.toast, null);