LayoutInflater inflater=LayoutInflater.from(getApplicationContext());
View view=inflater.inflate(R.layout.toast_layout,null);
Toast toast1=new Toast(getApplicationContext());
toast1.setView(view);
toast1.show();
View view=inflater.inflate(R.layout.toast_layout,null);
Toast toast1=new Toast(getApplicationContext());
toast1.setView(view);
toast1.show();
2016-04-03