|
|
@@ -1,5 +1,7 @@
|
|
|
package kr.co.zumo.app.lifeplus.view.screen.event;
|
|
|
|
|
|
+import android.os.Handler;
|
|
|
+
|
|
|
import kr.co.zumo.app.R;
|
|
|
import kr.co.zumo.app.lifeplus.helper.NavigationBar;
|
|
|
import kr.co.zumo.app.lifeplus.supervisor.ScreenID;
|
|
|
@@ -85,7 +87,17 @@ public class EventDetailPresenter extends Presenter<EventDetailModel, IEventDeta
|
|
|
case Event.CLICK:
|
|
|
if (model.isMember()) {
|
|
|
// TODO: 이벤트 참여하기 화면 구현
|
|
|
+
|
|
|
showCoinSavingDialog();
|
|
|
+ new Handler().postDelayed(new Runnable() {
|
|
|
+ @Override
|
|
|
+ public void run() {
|
|
|
+ dialog.dispose();
|
|
|
+ if (event.getIndex() != 0) {
|
|
|
+ view.setScrollToPosition(event.getIndex() + 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }, 2000);
|
|
|
}
|
|
|
else {
|
|
|
showPopupForGuest();
|