Widget - Toast Custome

LayoutInflater i = getLayoutInflater();

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