문제

I tried to do something extremely simple or I thought it was.

In my BluetoothChat, I set

public static boolean potato = false;

In the onCreateBundle of my MainActivity, I have

if(BluetoothChat.potato == false)
{
  tv.setText("it did not crash");
}

My application crashes immediately upon me switching windows from bluetoothchat to mainactivity. I receive java.lang.RuntimeException and java.lang.NullPointerException. However, the application does not crash and switches perfectly if I have the if statement commented out.

도움이 되었습니까?

해결책

It looks like the error is coming from tv, not BlueToothChat.potato. Have you initialized the "tv" variable at that point in the code?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top