6

このようにテキストビューにカスタムフォントを設定できます

Typeface typeface = Typeface.createFromAsset(context.getAssets(),"fonts/akshar.ttf");
setTypeface(typeface);

同じものをデフォルトのトーストに設定して、トースト メッセージでロケール テキストをレンダリングできるようにするにはどうすればよいですか。重力、持続時間は設定できますが、書体は設定できません。

前もって感謝します。

4

2 に答える 2

5

カスタム トーストを次のように作成できます。

 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を参照してください。

于 2012-06-30T05:32:30.633 に答える
1

Toast にはメソッドsetView()があるため、TextView の書体を設定し、同じ TextView を Toast に追加できます。

toast.setView(textview);
于 2012-06-30T05:32:42.413 に答える