自定义字体在Fragment Android Studio中不起作用

时间:2016-11-13 12:58:00

标签: java android android-layout android-fragments

我想制作自定义字体textview。

我已经进入 FragEarnCredits.java:

RUN chmod a+rwx -R project-dir/smarty.cache.dir

fragment_earn_credits.xml

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        if (aiView == null) {
            aiView = inflater.inflate(R.layout.fragment_earn_credits, container, false);
        }


        t = (TextView) aiView.findViewById(R.id.logo);
        Typeface myCustomFont=Typeface.createFromAsset(aiContext.getAssets(),"fonts/bebas.otf");
        t.setTypeface(myCustomFont);

我得到了空错误。为什么?请帮帮我们!

#EDIT

我试图改变:

<TextView
    android:id="@+id/logo"
    android:text="Fashion Wallet"
    android:gravity="center"
    android:textSize="40dp"
    android:textColor="@color/md_brown_700"
    android:layout_marginTop="100dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
  />

 Typeface myCustomFont=Typeface.createFromAsset(aiContext.getAssets(),"fonts/bebas.otf");

0错误但没有改变字体。

1 个答案:

答案 0 :(得分:0)

Typeface font = Typeface.createFromAsset(getActivity().getAssets(), "fonts/customfont.ttf");

您在片段类中发送的上下文,您必须使用您的实际上下文。

希望它有所帮助!干杯!