Commit 315b2da5 by Kim Jinsung

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

parent c70a2c2e
...@@ -170,8 +170,11 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity { ...@@ -170,8 +170,11 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
@Override @Override
public void onConnectionState() { // 中心温度計接続成功 public void onConnectionState() { // 中心温度計接続成功
Logger.d(TAG, "onConnectionState"); Logger.d(TAG, "onConnectionState");
//ダイアログが非表示になっても、何回呼ばれることがあるので、ダイアログのnullチェックする。
if (mWaitingDialog != null) {
mWaitingDialog.setMessage(getString(R.string.msg_ble_connect_success)); mWaitingDialog.setMessage(getString(R.string.msg_ble_connect_success));
} }
}
@Override @Override
public void onDisConnectionState() { // 中心温度計接続切断 public void onDisConnectionState() { // 中心温度計接続切断
......
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