我想制作自定义字体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错误但没有改变字体。
答案 0 :(得分:0)
Typeface font = Typeface.createFromAsset(getActivity().getAssets(), "fonts/customfont.ttf");
您在片段类中发送的上下文,您必须使用您的实际上下文。
希望它有所帮助!干杯!