我将如何设置自定义字体我的我的Android应用程序选项菜单正确的大小屏幕顶部。它应该是自定义字体,如Raleway Regular。
答案 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"/>