我正在尝试让我的应用程序打开特定网页。但是,单击该按钮时,应用程序崩溃并抛出以下错误:
java.lang.NullPointerException:尝试调用虚方法' android.view.LayoutInflater android.view.Window.getLayoutInflater()'在空对象引用上
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_schedule, menu);
return true;
}
调用的布局不为null且存在。有什么问题?