カスタム トーストを次のように作成できます。
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("Hello! This is a custom toast!");
Typeface typeface = Typeface.createFromAsset(context.getAssets(),"fonts/akshar.ttf");
text.setTypeface(typeface);
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
toast.setDuration(Toast.LENGTH_LONG);
toast.setView(layout);
toast.show();
カスタム Toast の作成方法の詳細については、CustomToastViewを参照してください。