0

私はしばらく試してみて、これを理解するためにたくさん探しましたが、運がありません. 私の問題は、一言で言えば、ボタンの書体をプログラムで設定できないことです。私はfindViewByIdで問題なく取得できます。次に、Typefaceを作成して設定します。何も壊れることはなく、すべてが正常に見えます。ただし、変更がプログラムに表示されることはありません。それはまだデフォルトの書体です。

これが私のコードです。

    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 に答える