0

我已经尝试了一段时间,并搜索了很多来解决这个问题,但没有运气。简而言之,我的问题是:我无法以编程方式设置按钮的字体。我可以用 findViewById 很好地完成它,然后我创建我的字体并设置它,没有什么会破坏一切看起来很正常。除了更改从未出现在程序中。它仍然是默认字体。

这是我的代码。

    public class MainActivity extends FragmentActivity {
Button lcb;
Typeface resoLite;
private SplashFragment splashFragment;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    if (savedInstanceState == null) {
        // Add the fragment on initial activity setup
        splashFragment = new SplashFragment();
        getSupportFragmentManager()
        .beginTransaction()
        .add(android.R.id.content, splashFragment)
        .commit();
    } else {
        // Or set the fragment from restored state info
        splashFragment = (SplashFragment) getSupportFragmentManager()
        .findFragmentById(android.R.id.content);
    }

    SpannableString s = new SpannableString("resocializer");
    s.setSpan(new TypefaceSpan(this, "titillium-bold"), 0, s.length(),
            Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

    // Update the action bar title with the TypefaceSpan instance
    ActionBar actionBar = getActionBar();
    //actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE);
    actionBar.setTitle(s);


        //Here's the important stuff. I get the button fine. I create the typeface                         
        //fine. I set the typeface fine. but none of this appears to have any effect
        //in the actual program when it's running.
    lcb = (Button) findViewById(R.id.lcb);
    resoLite = Typeface.createFromAsset(getAssets(), "fonts/titillium-bold.otf");
        lcb.setTypeface(resoLite);
}

还有我的activity_main xml:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

    <com.facebook.widget.LoginButton
    android:id="@+id/authButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginTop="30dp"
    />

    <Button
        android:id="@+id/lcb"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/lcbText"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="60dp"
        android:background="#C4A649"
        android:textColor="#FFFFFF"
        android:onClick="logConversation"/>

</LinearLayout>

我已经使用 Logs 和 Typeface.equals() 测试了 setTypeface,以检查它是否设置为我期望的设置,并且看起来确实如此。它只是永远不会改变屏幕上的实际按钮。我觉得我缺少一些明显的东西。有任何想法吗?

编辑:为了清楚起见,我试图在项目的 assets/fonts/ 文件夹中将字体设置为自定义字体,因此在 xml 文件中设置它不起作用。

4

1 回答 1

0

首先将您的字体放在文件夹assets/fonts/your_font.ttf

现在在您的 Activity/Fragment 类中添加以下代码行:

Typeface myTypeface = Typeface.createFromAsset(getAssets(), "fonts/your_font.ttf");
Button custom_btn = (Button) findViewById(R.id.btn);
custom_btn.setTypeface(myTypeface);
custom_btn.setOnClickListener(this);
于 2013-10-21T06:19:20.997 回答