Android如何将customfont应用于ButtonText

时间:2014-08-20 07:04:17

标签: android button textview custom-font

我在android中有一个按钮,里面有一个文本。我使用以下代码将自定义字体应用于Android中的所有TextView:

Typeface custom_font_subtitle = Typeface.createFromAsset(getContext().getAssets(), "fonts/omnesreg.ttf");
subtitle.setTypeface(custom_font_subtitle);

由于按钮没有textview,我该如何应用呢?

任何建议

谢谢

3 个答案:

答案 0 :(得分:2)

    button1 = (Button)findViewById(R.id.button1);
    button1.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/omnesreg.ttf");
    button1.setText("hello");

答案 1 :(得分:1)

你试过这个:

    Button btn= (Button) findViewById(R.id.buttonreturn);
    btn.setTypeface(custom_font);

答案 2 :(得分:1)

试试这个:

Typeface custom_font_subtitle = Typeface.createFromAsset(getContext().getAssets(),         "assets/omnesreg.ttf");
subtitle.setTypeface(custom_font_subtitle);