导航抽屉列表 header 的字体

Navigation drawer´s list header´s typeface

我有一个带有导航抽屉的应用程序。它有一个 header 的列表。 header 有一个图像和一个文本。我想将字体设置为该文本,但我不知道如何设置。

我的代码是这样的:

mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
        mDrawerList = (ListView) findViewById(R.id.left_drawer);

        View header= getLayoutInflater().inflate(R.layout.header, null);
        mDrawerList.addHeaderView(header);

我的header.xml:

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

    <LinearLayout
        android:layout_width="240dp"
        android:layout_height="wrap_content"
        android:gravity="center_vertical|center_horizontal"
        android:orientation="vertical"
        android:visibility="visible" >

        <ImageView
            android:id="@+id/imagen_resul"
            android:layout_width="wrap_content"
            android:layout_height="160dp"
            android:layout_marginBottom="8dp"
            android:layout_marginTop="10dp"
            android:src="@drawable/leon_trans" />

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="by xxxx"
            android:textColor="#FFFFFF"
            android:textSize="18sp" />

    </LinearLayout>

</FrameLayout>

如何传递 header 字体?谢谢

膨胀header后列出:

textView=(TextView)findViewById(R.id.textView1);
Typeface tf = Typeface.createFromAsset(this.getAssets(),
"fonts/Roboto-Light.ttf");

textView.setTypeface(tf);

有很多方法可以做到这一点:

您可以将您的 TextView 换成这个

 <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="by xxxx"
            android:textColor="#FFFFFF"
            android:textSize="18sp"
            android:typeface="yourtypeface"
 />

你也可以用代码来做..

您必须创建一个名为 "fonts" 的文件夹,然后在其中复制您的字体,然后您可以执行以下操作:

    TextView=(TextView)findViewById(R.id.textView1);
    Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "fonts/THEFONTYOUWANT")
TextView.setTypeface(tf);

如果你只想对你的 TextView 进行装饰,你可以这样做:

TextView textview= (TextView) findViewById(R.id.textView1)
textView.setTypeface(null, Typeface.BOLD);
textView.setTypeface(null, Typeface.ITALIC);
textView.setTypeface(null, Typeface.BOLD_ITALIC);

希望对您有所帮助:)