我在使用自定义字体时遇到此错误。我已经尝试过使用MainActivity中的代码和各自的xml活动(查询)(在这种情况下,没有错误,但字体不适用)。
MainActivity
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
WebView webView;
TextView tv_appname;
Typeface typeface;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String fontpath="font/batman.ttf";
tv_appname=(TextView)findViewById(R.id.tv_appname);
typeface= Typeface.createFromAsset(getAssets(),fontpath);
tv_appname.setTypeface(typeface);
Acitivity Inquiry(其中放置了我想要更改其字体的文本)
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
tools:context="mayank2511.galgotiasuniversity.EnquiryActivity"
android:id="@+id/nav_enq"
android:paddingLeft="20dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Enquiry Form"
android:textSize="34sp"
android:textColor="#fff"
android:id="@+id/tv_appname"
android:layout_marginTop="10dp"
android:gravity="center"/>
查询活动(包括它帮助 - 它评论了)
public class EnquiryActivity extends AppCompatActivity {
/* TextView tv_appname;
Typeface typeface; */
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_enquiry);
/*String fontpath="font/batman.ttf";
tv_appname=(TextView)findViewById(R.id.tv_appname);
typeface= Typeface.createFromAsset(getAssets(),fontpath);
tv_appname.setTypeface(typeface);
getSupportActionBar().hide();*/
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
}
答案 0 :(得分:0)
您是否尝试调试或检查堆栈跟踪以查看哪条线确切地抛出了NPE?
除tv_appname.setTypeface(typeface)
之外(如果你使用你提供的布局,它不会抛出NPE),我只看到一行可以抛出NPE,那就是getSupportActionBar().hide()
。您应该始终先检查操作栏是否为空。