0

この情報がインターネットのいたるところにあることは知っていますが、自分が何を間違っているのか一生わからないのです。コードを実行しようとすると、null ポインター例外ですぐにクラッシュしますが、なぜそれが起こっているのか、どこで起こっているのかわかりません。かなり単純なものが欠けていると思いますが、私はアンドロイドが初めてなので、それが何であるかわかりません。コードは次のとおりです。

主な活動:

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

GetConnInfoFragment:

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 をインスタンス化します。次の行では、テキストを解析して整数にします。EditText の新しいインスタンスにはテキストがないため、portBox.getText().toString()null を返します。ipBox EditText でも同じことが起こります。

ユーザーに EditText に何かを入力させたり、 でテキストを入力しportBox.setText()たり、 で 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 では「Run as」ではなく「Debug as」を使用します)。これにより、コードをステップ実行して、例外の原因となっている行を見つけることができます。

于 2013-09-17T21:55:25.113 に答える