Commit 315b2da5 by Kim Jinsung

中心温度計接続してから、数回中心温度計操作するとアプリが落ちる問題対応

parent c70a2c2e
......@@ -170,7 +170,10 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
@Override
public void onConnectionState() { // 中心温度計接続成功
Logger.d(TAG, "onConnectionState");
mWaitingDialog.setMessage(getString(R.string.msg_ble_connect_success));
//ダイアログが非表示になっても、何回呼ばれることがあるので、ダイアログのnullチェックする。
if (mWaitingDialog != null) {
mWaitingDialog.setMessage(getString(R.string.msg_ble_connect_success));
}
}
@Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment