setTypeface(font)不起作用

时间:2013-09-25 10:49:06

标签: android

我在运行时设置了字体。但它没有反映在我的应用程序中。

package com.example.practice;

import android.os.Bundle;
import android.app.Activity;
import android.graphics.Typeface;
import android.view.Menu;
import android.view.View;
import android.widget.TextView;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Typeface font = Typeface.createFromAsset(getAssets(), "fonts/Windsong.ttf");
        View customActionBar=getLayoutInflater().inflate(R.layout.activity_main, null);
        TextView actionBarTitle=(TextView)customActionBar.findViewById(R.id.helloworld);
        actionBarTitle.setTypeface(font); 
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

我期待以下字体。

enter image description here

但我得到以下输出。

enter image description here

1 个答案:

答案 0 :(得分:1)

试试这个。

TextView actionBarTitle=(TextView)findViewById(R.id.helloworld);   
actionBarTitle.setText("HelloWorld");
actionBarTitle.setTypeface(font);