我在 android 4.1 手机中看不到 toast 消息。直到昨天,我才能够看到 toast 消息。从今天开始,只有我看不到该消息。请帮我。
Toast.makeText(getApplicationContext(), "hi", Toast.LENGTH_SHORT).show();
我也尝试过自定义吐司消息而不是吐司消息。但仍然无法正常工作。
自定义吐司:
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();