Commit 74774ac3 by Kim Jinsung

作業一覧からシーン画像選択画面表示時、新着更新中止処理追加

parent 4d51f0cd
...@@ -1150,6 +1150,10 @@ public class OperationListActivity extends ABVUIActivity { ...@@ -1150,6 +1150,10 @@ public class OperationListActivity extends ABVUIActivity {
*/ */
public void showPanoEntryDialog(final OperationDto operationDto) { public void showPanoEntryDialog(final OperationDto operationDto) {
Logger.d(TAG, "*****************showPanoEntryDialog"); Logger.d(TAG, "*****************showPanoEntryDialog");
if (contentRefresher != null && contentRefresher.isRefreshing()) {
// 新着更新処理が行っていれば、止める
contentRefresher.stopRefresh();
}
//インターネットチェック //インターネットチェック
if (checkNetworkConnected()) { if (checkNetworkConnected()) {
//パーミッションチェック //パーミッションチェック
......
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