|
|
@@ -31,7 +31,6 @@ import kr.co.zumo.app.lifeplus.helper.ActionBarHelper;
|
|
|
import kr.co.zumo.app.lifeplus.helper.ScreenSizeHelper;
|
|
|
import kr.co.zumo.app.lifeplus.util.ResourceUtil;
|
|
|
import kr.co.zumo.app.lifeplus.view.Event;
|
|
|
-import kr.co.zumo.app.lifeplus.view.IEventListener;
|
|
|
import kr.co.zumo.app.lifeplus.view.OverScrollDriver;
|
|
|
import kr.co.zumo.app.lifeplus.view.custom.Tutorial;
|
|
|
import kr.co.zumo.app.lifeplus.view.screen.FragmentBase;
|
|
|
@@ -266,15 +265,19 @@ public class BucketListWithTagDetailFragment extends FragmentBase<BucketListWith
|
|
|
|
|
|
@Override
|
|
|
public void setVisibilityResultNothing(boolean isVisible) {
|
|
|
-
|
|
|
+ Log.e("APP# BucketListWithTagDetailFragment | setVisibilityResultNothing, 268", "isVisible |" + isVisible);
|
|
|
if (isVisible) {
|
|
|
setTagTitle(0);
|
|
|
+ Log.e("APP# BucketListWithTagDetailFragment | setVisibilityResultNothing, 271", "|" + "들어옴 ==>");
|
|
|
layoutNothing.setVisibility(View.VISIBLE);
|
|
|
layoutContainerRecyclerView.setVisibility(View.GONE);
|
|
|
+ recyclerView.setVisibility(View.GONE);
|
|
|
+
|
|
|
}
|
|
|
else {
|
|
|
layoutNothing.setVisibility(View.GONE);
|
|
|
layoutContainerRecyclerView.setVisibility(View.VISIBLE);
|
|
|
+ recyclerView.setVisibility(View.VISIBLE);
|
|
|
}
|
|
|
|
|
|
}
|
|
|
@@ -295,11 +298,8 @@ public class BucketListWithTagDetailFragment extends FragmentBase<BucketListWith
|
|
|
public void showTutorialBucketTag() {
|
|
|
ScreenSizeHelper helper = getHelper(ScreenSizeHelper.class);
|
|
|
tutorial = new Tutorial(helper.getScreenWidth());
|
|
|
- tutorial.showTutorial(getActivity(), Tutorial.TUTORIAL_BUCKET, new IEventListener() {
|
|
|
- @Override
|
|
|
- public void onEvent(Event event) {
|
|
|
+ tutorial.showTutorial(getActivity(), Tutorial.TUTORIAL_BUCKET, event -> {
|
|
|
|
|
|
- }
|
|
|
});
|
|
|
}
|
|
|
|