Widget - Toast Custome Example

LayoutInflater i = getLayoutInflater();

View v = i.inflate(R.layout.toast,
(ViewGroup) findViewById(R.id.toastlinear1)
);
Toast t = Toast.makeText(getApplicationContext(),"",Toast.LENGTH_SHORT);
t.setView(v);
t.show();