我想更改android中选项菜单的自定义字体(如:Centuary Gothic,Raleway Regular)

时间:2017-02-06 13:38:34

标签: android android-studio

Image Here

我将如何设置自定义字体我的我的Android应用程序选项菜单正确的大小屏幕顶部。它应该是自定义字体,如Rale​​way Regular。

1 个答案:

答案 0 :(得分:2)

创建一个类

public class Railway_Bold extends TextView {
public Railway_Bold(Context context, AttributeSet attrs) {
    super(context, attrs);
    this.setTypeface(Typeface.createFromAsset(context.getAssets(),"fonts/Raleway-Bold.ttf"));
}}

将此课程用于textview ...

 <your_package_name.fonts.Railway_SemiBold
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Trending Articles"
            android:textColor="@color/black"
            android:textSize="18dp"
            android:layout_marginLeft="20dp"
            android:layout_marginTop="20dp"/>