|
|
@@ -3,7 +3,7 @@ package kr.co.zumo.app.lifeplus.view.screen.my.bucketlist;
|
|
|
import kr.co.zumo.app.lifeplus.helper.ActionBarHelper;
|
|
|
|
|
|
/**
|
|
|
- * AddMyBucketListFragment
|
|
|
+ * EditMyBucketListFragment
|
|
|
* <pre>
|
|
|
* </pre>
|
|
|
*
|
|
|
@@ -12,7 +12,7 @@ import kr.co.zumo.app.lifeplus.helper.ActionBarHelper;
|
|
|
* @history 하세미 [2018-10-18] [최초 작성]
|
|
|
* @since 2018-10-18
|
|
|
*/
|
|
|
-public class MyBucketListEditFragment extends AddMyBucketListFragment {
|
|
|
+public class EditMyBucketListFragment extends AddMyBucketListFragment {
|
|
|
|
|
|
@Override
|
|
|
protected void defineActionBar(ActionBarHelper actionBarHelper) {
|
|
|
@@ -21,13 +21,13 @@ public class MyBucketListEditFragment extends AddMyBucketListFragment {
|
|
|
.confirm(navigationBar -> presenter.onNavigationClickConfirm(navigationBar))
|
|
|
.trash(navigationBar -> presenter.onNavigationClickTrash(navigationBar))
|
|
|
.transparent()
|
|
|
-// .white()
|
|
|
+ .white()
|
|
|
.show();
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
protected AddMyBucketListPresenter definePresenter() {
|
|
|
- return new MyBucketListEditPresenter(getModel(AddMyBucketListModel.class), this);
|
|
|
+ return new EditMyBucketListPresenter(getModel(AddMyBucketListModel.class), this);
|
|
|
}
|
|
|
|
|
|
}
|