| | |
| | | } |
| | | |
| | | public static void showToastShort(Context context, String s) { |
| | | if (s != null) { |
| | | if (!TextUtils.isEmpty(s)) |
| | | makeText(context, s, Toast.LENGTH_SHORT).show(); |
| | | |
| | | if (!TextUtils.isEmpty(s)) { |
| | | if (context != null) { |
| | | if (!TextUtils.isEmpty(context.getPackageName())) { |
| | | makeText(context, s, Toast.LENGTH_SHORT).show(); |
| | | } |
| | | } |
| | | } |
| | | |
| | | } |
| | | |
| | | public static void showToastLong(Context context, String s) { |
| | | if (!TextUtils.isEmpty(s)) { |
| | | makeText(context, s, Toast.LENGTH_LONG).show(); |
| | | if (context != null) { |
| | | if (!TextUtils.isEmpty(context.getPackageName())) { |
| | | makeText(context, s, Toast.LENGTH_LONG).show(); |
| | | } |
| | | } |
| | | } |
| | | } |
| | | |
| | | public static void showToast(Context context, String s) { |
| | | if (s != null) { |
| | | makeText(context, s, Toast.LENGTH_LONG).show(); |
| | | if (context != null) { |
| | | if (!TextUtils.isEmpty(context.getPackageName())) { |
| | | makeText(context, s, Toast.LENGTH_LONG).show(); |
| | | } |
| | | } |
| | | |
| | | } |
| | | } |
| | | |