Commit f732d5a6 by Kazuyuki Hida

プログレスアイコンを閉じる処理を変更

parent 6f294325
......@@ -81,7 +81,6 @@ public class AgreementToTermsHelper {
context.runOnUiThread(new Runnable() {
@Override
public void run() {
context.closeProgressPopup();
// 同意画面表示
showAgreementDialog(context, termsJSON1, isNomalSize, listener);
}
......@@ -90,6 +89,13 @@ public class AgreementToTermsHelper {
Logger.e(TAG, e);
// 取得に失敗した場合
listener.onFailed(e);
} finally {
context.runOnUiThread(new Runnable() {
@Override
public void run() {
context.closeProgressPopup();
}
});
}
}
});
......
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