gpt4 book ai didi

java - Android 空指针异常 - fragment (PA4AD)

转载 作者:行者123 更新时间:2023-11-29 07:44:52 27 4
gpt4 key购买 nike

我一直在努力学习 Professional Android 4 App dev 这本书,并且卡在了其中一个教程中。我的应用程序编译正常,但是当我运行它时,它崩溃并出现错误 NullPointerException: Attempt to invoke virtual method 'boolean java.util.ArrayList.add(java.lang.Object' on a null object reference. 当我输入一些文本时会发生这种情况进入 edittext 并回车。

程序似乎在 onNewItemAdded 方法中的 todoItems.add 行崩溃了。据我所知,我的数组列表已正确初始化。

我是 Java 和 Android 开发的新手,我不知道哪里出了问题。

对于那些不熟悉这本书的人,该应用程序包含一个编辑文本 fragment 和一个列表 fragment 。

感谢您的帮助。

ToDoListActivity.java

import android.app.Activity;
import android.app.FragmentManager;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ArrayAdapter;
import java.util.ArrayList;


public class ToDoListActivity extends Activity
implements NewItemFragment.OnNewItemAddedListener {

private ArrayAdapter<String> aa;
private ArrayList<String> todoItems;

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

// Inflate your View
setContentView(R.layout.main);

// Get references to UI widgets
FragmentManager fm = getFragmentManager();
ToDoListFragment toDoListFragment =
(ToDoListFragment)fm.findFragmentById(R.id.ToDoListFragment);

// Create the Array List of to do items
final ArrayList<String> todoItems = new ArrayList<String>();

// Create the Array Adapter to bind the array to the List View
final ArrayAdapter<String> aa;

aa = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1,
todoItems);

// Bind the Array Adapter to the List View
toDoListFragment.setListAdapter(aa);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public void onNewItemAdded(String newItem) {
System.out.println(newItem);
todoItems.add(newItem);
aa.notifyDataSetChanged();
}
}

NewItemFramgment.java

import android.app.Activity;
import android.net.Uri;
import android.os.Bundle;
import android.app.Fragment;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.EditText;


/**
* A simple {@link Fragment} subclass.
* Activities that contain this fragment must implement the
* {@link NewItemFragment.OnNewItemAddedListener} interface
* to handle interaction events.
*
*/
public class NewItemFragment extends Fragment {

private OnNewItemAddedListener onNewItemAddedListener;

public interface OnNewItemAddedListener {
public void onNewItemAdded(String newItem);
}

public NewItemFragment() {
// Required empty public constructor
}


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.new_item_fragment, container, false);

final EditText myEditText = (EditText)view.findViewById(R.id.myEditText);

myEditText.setOnKeyListener(new View.OnKeyListener() {
public boolean onKey(View v, int keyCode, KeyEvent event) {
if (event.getAction() == KeyEvent.ACTION_DOWN)
if ((keyCode == KeyEvent.KEYCODE_DPAD_CENTER) ||
(keyCode == KeyEvent.KEYCODE_ENTER)) {
String newItem = myEditText.getText().toString();
onNewItemAddedListener.onNewItemAdded(newItem);
myEditText.setText("");
return true;
}
return false;
}
});

return view;
}

/* // TODO: Rename method, update argument and hook method into UI event
public void onButtonPressed(Uri uri) {
if (mListener != null) {
mListener.onFragmentInteraction(uri);
}
}*/

@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
try {
onNewItemAddedListener = (OnNewItemAddedListener)activity;
} catch (ClassCastException e) {
throw new ClassCastException(activity.toString()
+ " must implement OnItemAddedListener");
}
}

@Override
public void onDetach() {
super.onDetach();
onNewItemAddedListener = null;
}
}

最佳答案

要了解您的问题,您需要了解如何 variable scopes在 Java 中工作

简而言之,您有类变量(也称为字段)和局部变量:

class MyClass {
int myVar; // Class Variable - this variable is visible to the whole class

void someMethod() {
int myVar; // Local Variable - this variable is visible only within someMethod()
}
}

通过对类变量和局部变量使用相同的名称,someMethod() 中的变量“隐藏”全局类变量。

因此,你的问题是在你的 onCreate 里面,您正在重新声明一个ArrayList通过以下方式调用 todoItems:

// Create the Array List of to do items
final ArrayList<String> todoItems = new ArrayList<String>();

这意味着todoItems引用此本地版本(仅在 onCreate 方法内可见)而不是您在类(class)顶部定义的全局版本(对您的整个类(class)可见)。

但是,在你的 onNewItemAdded 里面方法,todoItems指类全局 ArrayList它从未被初始化(因此是 null ),这就是为什么你得到一个 NullPointerException 的原因.

您应该将上面的语句更改为:

todoItems = new ArrayList<String>();

所以它指的是全局类ArrayList

注意:您的 ArrayAdapter<String> aa 也有同样的问题

关于java - Android 空指针异常 - fragment (PA4AD),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26722825/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com