|
|
@@ -68,6 +68,7 @@ public abstract class MyMainFragment extends FragmentBase<MyMainPresenter> imple
|
|
|
protected View arrowBookmark;
|
|
|
protected View arrowBucket;
|
|
|
protected TextView textBucketLabel;
|
|
|
+ protected TextView textBenefitLabel;
|
|
|
|
|
|
protected CheckBox likeCheck1;
|
|
|
protected CheckBox likeCheck2;
|
|
|
@@ -108,6 +109,7 @@ public abstract class MyMainFragment extends FragmentBase<MyMainPresenter> imple
|
|
|
arrowBookmark = findViewById(R.id.image_view_book_mark_arrow);
|
|
|
arrowBucket = findViewById(R.id.image_view_arrow_bucket_list);
|
|
|
textBucketLabel = findViewById(R.id.text_view_exists_bucket_list);
|
|
|
+ textBenefitLabel = findViewById(R.id.text_view_benefit);
|
|
|
|
|
|
likeCheck1 = findViewById(R.id.like_check);
|
|
|
likeCheck2 = findViewById(R.id.like_check2);
|
|
|
@@ -178,6 +180,9 @@ public abstract class MyMainFragment extends FragmentBase<MyMainPresenter> imple
|
|
|
textViewBookmarkCount.setOnClickListener(view -> presenter.onEvent(new Event.Builder(Event.BOOK_MARK_LIST).build()));
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public abstract void setBenefitLabel(String str);
|
|
|
+
|
|
|
@Override
|
|
|
public void setMyBookmarkList(ArrayList<BookmarkBean> bookmarkBeans) {
|
|
|
textViewBookmarkRecommend.setVisibility(View.GONE);
|