I can not see the toasts in the Android 4.1 mobile phone. Until yesterday, I was able to see a toast message. From today, only I do not see the message. Please help me.
Toast.makeText(getApplicationContext(), "hi", Toast.LENGTH_SHORT).show();
I tried not only a toast message, but also a toast message. But still not working.
Custom Toast:
LayoutInflater inflater=getLayoutInflater(); View layout = inflater.inflate(R.layout.toast_layout,(ViewGroup) findViewById(R.id.toast_layout_root)); TextView text = (TextView) layout.findViewById(R.id.text); text.setText("Please fill Name"); Toast toast = new Toast(getApplicationContext()); toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0); toast.setDuration(Toast.LENGTH_LONG); toast.setView(layout); toast.show();
android toast android-4.2-jelly-bean
AndroidRaji
source share