导航抽屉列表标题的字体

时间:2015-02-20 11:27:21

标签: android navigation-drawer

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

我的代码是这样的:

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>

如何传递标题字体?感谢

2 个答案:

答案 0 :(得分:0)

将标题扩展到列表后:

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

textView.setTypeface(tf);

答案 1 :(得分:0)

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

您可以将此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"
 />

你也可以用代码来做..

你必须创建一个名为&#34; fonts&#34;的文件夹。然后在里面只复制你的字体,然后就可以了:

    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);

希望有所帮助:)