0

我知道这些信息遍布互联网,但我无法终生弄清楚我做错了什么。当我尝试运行我的代码时,它会立即崩溃并出现空指针异常,但我似乎无法弄清楚为什么会发生这种情况或发生在哪里。我想我错过了一些相当简单的东西,但我是 android 新手,所以我不知道它是什么。这是代码:

主要活动:

public class MainActivity extends Activity implements GetConnInfoFragment.ConnInfoReceiver {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    FragmentManager fragmentManager = getFragmentManager();
    FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();

    GetConnInfoFragment frag = new GetConnInfoFragment();
    fragmentTransaction.add(R.id.mainFragmentContainer, frag);
    fragmentTransaction.commit();
}

@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;
}
    ....

获取ConnInfoFragment:

public class GetConnInfoFragment extends Fragment {
ConnInfoReceiver ownerActivity; 

@SuppressLint("NewApi")
@Override 
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    Button goButton = (Button) getView().findViewById(R.id.connectButton);
    goButton.setOnClickListener(new View.OnClickListener() {            
        @Override
        public void onClick(View v) {
            EditText portBox = (EditText) v.findViewById(R.id.portBox);
            int port = Integer.parseInt(portBox.getText().toString());
            EditText ipBox = (EditText) v.findViewById(R.id.ipAddressBox);
            String address = ipBox.getText().toString();

            // create sockets, might these be garbage collected ? 
            // in which case the main activity should create them. That makes
            // more sense anyway
            // activate next fragment -- call back up to the main activity to trigger this
            ownerActivity.receiveConnInfo(port, address);
        }
    });

    return inflater.inflate(R.layout.getconninfofragment,  container, false);
}

这是错误消息:

E/AndroidRuntime(1470): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.htpccontrol/com.htpccontrol.MainActivity}: java.lang.NullPointerException

编辑:这是我的 getConnInfoFragment.xml 的 .xml 文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

<EditText
    android:id="@+id/ipAddressBox"
    android:layout_width="wrap_content"
        android:layout_height="wrap_content"
    android:hint="@string/enterIP" />

    <EditText
        android:id="@+id/portBox"
    android:layout_width="wrap_content"
        android:layout_height="wrap_content"
    android:hint="@string/enterPort" />

    <Button 
        android:id="@+id/connectButton"
    android:layout_width="wrap_content"
        android:layout_height="wrap_content"
    android:text="@string/Connect" />


</LinearLayout>
4

2 回答 2

1

goButton 的 onClick 实例化了一个 EditText。在下一行中,您将文本解析为 Integer。EditText 的新实例没有文本,因此portBox.getText().toString()返回 null。ipBox EditText 也会发生同样的情况。

让用户在 EditText 中键入内容,在其中输入文本portBox.setText()或使用 .xml 设置 xml 中的文本android:text="yourText"。否则代码没有意义。因为 EditText 的作用域只在 onClick 方法中。所以你不能在方法之外使用它。

要在解析时摆脱 NPE,请检查 null:

if(portBox.getText() != null){
    port = Integer.parseInt(portBox.getText().toString());
}

编辑:

您的代码还有一些缺陷。试试这个代码:

// Class fields
EditText portBox;
EditText ipBox;
@SuppressLint("NewApi")
@Override 
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // inflate the layout
    View view = inflater.inflate(R.layout.getconninfofragment,  null, false);

    // get the Views of your inflated layout
    Button goButton = (Button) view.findViewById(R.id.connectButton); 
    portBox = (EditText) v.findViewById(R.id.portBox); // set a text to it like I said
    ipBox = (EditText) v.findViewById(R.id.ipAddressBox);

    goButton.setOnClickListener(new View.OnClickListener() {            
        @Override
        public void onClick(View v) {
           int port;
           String address;

           if(portBox.getText() != null && ipBox.getText != null){
                port = Integer.parseInt(portBox.getText().toString());
                address = ipBox.getText().toString();
                // check if this is valid, I can't see it in the snippets of your code
                ownerActivity.receiveConnInfo(port, address);
           }
        }
    });

    return view; // return the view you inflated
}
于 2013-09-17T21:55:54.083 回答
0

远程调试很困难,但您应该检查您的所有变量(如 ownerActivity)是否已初始化,或者 portBox.getText() 是否可能返回 null。

一个好方法是在您创建的代码中设置断点并启动应用程序进行调试(在 Eclipse 中使用“Debug as”而不是“Run as”)。这将让您逐步执行代码以找到导致异常的行。

于 2013-09-17T21:55:25.113 回答