如何在TextView中使用Roboto Font?

时间:2013-09-19 08:26:35

标签: android fonts styles textview

如何在文本视图中使用roboto字体类型? 我想从xml和我的应用程序支持上面的4.1。 以下是我尝试过的事情:

 <style name="BubbleNumber">
    <item name="android:textStyle">normal</item>    
    <item name="android:fontFamily">sans-serif</item> 
   <item name="android:textSize">14sp</item>
   <item name="android:textColor">@color/bubble_text_color</item>
 </style>

4 个答案:

答案 0 :(得分:6)

Roboto已经是默认的字体类型(从Android 4.0开始) 见http://developer.android.com/design/style/typography.html

否则你必须以编程方式设置字体。

所以我建议你写一个课程:

public class StyledTextView extends TextView {

    public StyledTextView(Context context) {
        super(context);
        style(context);
    }

    public StyledTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        style(context);
    }

    public StyledTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        style(context);
    }

    private void style(Context context) {
        Typeface tf = Typeface.createFromAsset(context.getAssets(),
                "fonts/roboto.ttf");
        setTypeface(tf);
    }

}

然后,您可以在普通的XML布局中使用它来替换普通的TextView

<LinearLayout
   android:width="match_parent"
   android:height="match_parent" >

    <com.your.packakge.StyledTextView
         android:width="match_parent"
         android:height="match_parent" />

</LinearLayout>

答案 1 :(得分:2)

要获得roboto字体类型,您必须在资源文件夹中添加roboto的.ttf文件。并将typeFace属性设置为文本视图。例如

TextView title=(TextView)findViewById(R.id.tv);
Typeface font = Typeface.createFromAsset(
    activity.getAssets(), 
    "roboto.ttf");
title .setTypeface(font);

您无法在xml中设置它。

答案 2 :(得分:1)

我在我的应用程序中做了这样的事情,我需要的是所有字体都是Roboto。 如果你需要控制edittext或按钮然后添加一个视图类和 在自定义文本视图中扩展它,或者可以是edittext然后使用它。

 public class RobotoTextView extends TextView {

        Context context;

        public RobotoTextView(Context context, AttributeSet attrs, int defStyle) {
            super(context, attrs, defStyle);
            this.context = context;
        }

        public RobotoTextView(Context context, AttributeSet attrs) {
            super(context, attrs);
            this.context = context;
        }

        public RobotoTextView(Context context) {
            super(context);
            this.context = context;
        }

        public void setTypeface(Typeface tf, int style) {
            if (style == Typeface.NORMAL) {
                super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/RobotoNormal.ttf")/*
                                                                                                                 * ,
                                                                                                                 * -
                                                                                                                 * 1
                                                                                                                 */);
            } else if (style == Typeface.ITALIC) {
                super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/RobotoItalic.ttf")/*
                                                                                                                     * ,
                                                                                                                     * -
                                                                                                                     * 1
                                                                                                                     */);
            } else if (style == Typeface.BOLD) {
                super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/RobotoBold.ttf")/*
                                                                                                                     * ,
                                                                                                                     * -
                                                                                                                     * 1
                                                                                                                     */);
            }
        }

    }

现在在你的XML布局中调用它就像这样

                    <com.yourpakage.RobotoTextView
                        android:id="@+id/settings_cover_tv" 
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:layout_alignParentLeft="true"
                        android:layout_centerVertical="true"
                        android:textColor="#000000"
                        android:textSize="16sp"
                        android:text="Cover Photo"
                        android:layout_marginLeft="10dp"
                        />

答案 3 :(得分:0)

还有一个库Android-RobotoTextView可以做到这一点。