textview不服从资源fontfamily

时间:2018-02-20 17:48:46

标签: android android-layout android-fonts android-typeface

我使用这种方式定义的fonttype,android studio的布局设计视图以weathericon字体显示字符串/ textview。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorPrimaryLight">

    <TextView
        android:id="@+id/tvFragThird"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:fontFamily="@font/weathericons"
        android:text="@string/textview"
        android:textSize="30sp" />
</RelativeLayout>

但是,当我运行这段代码时:

public class ThirdFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View v = inflater.inflate(R.layout.fragment_third, container, false);

        TextView tv = (TextView) v.findViewById(R.id.tvFragThird);
//        Typeface typeface = ResourcesCompat.getFont(getContext(), R.font.weathericons);
//        tv.setTypeface(typeface);
        tv.setText("&#xf0eb;");//getArguments().getString("msg"));

return v;
}

我只是用普通字体获取文本。我已经尝试在java中定义fontfamily布局和字体,但它们都没有工作。

我缺少什么?

1 个答案:

答案 0 :(得分:0)

正如此处https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml所述,使用 fontFamily 自定义字体需要 API> = 26

因此,将 TextView 标记更改为 android.support.v7.widget.AppCompatTextView 标记(如果使用API​​ <26)。

我遇到了这个问题,我碰到了上面的链接,做了上面的更改,我的问题得到了解决,希望可以解决您的问题(如果尚未解决)和其他问题。

更新

正如 RobCo 所评论的那样,如果可以更改为 AppCompatActivity ,则不需要上述更改。这里提到:https://developer.android.com/reference/android/support/v7/widget/AppCompatTextView