Back to project page fonticon.
The source code is released under:
Apache License
If you think the Android project fonticon listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.shamanland.fonticon.example; /*from w w w . ja v a2s. c om*/ import android.content.Context; import android.os.Bundle; import android.support.v4.app.Fragment; public class ContentFragment extends Fragment { public Context getContext() { return getActivity(); } @Override public void onCreate(Bundle state) { super.onCreate(state); setHasOptionsMenu(true); } }