@@ -36,6 +36,16 @@ public abstract class EventDetailView<T extends EventPageBean> extends RecyclerV
}
+ /**
+ * 응모형 - html 비디오 닫기
+ *
+ * @return 비디오 닫았으면 true, 아무처리도 하지않으면 false
+ */
+
+ public boolean dispatchBackPressed() {
+ return false;
+ }
/**
* 선택형
*
@@ -134,7 +134,7 @@ public class EventDetailEntryFragment extends EventDetailBaseFragment<EventDetai
return false;
- EventDetailEntryHolder holder = (EventDetailEntryHolder) recyclerViewEventDetail.findViewHolderForAdapterPosition(layoutManager.findFirstVisibleItemPosition());
+ EventDetailView holder = (EventDetailView) recyclerViewEventDetail.findViewHolderForAdapterPosition(layoutManager.findFirstVisibleItemPosition());
if (null == holder) {
@@ -78,12 +78,4 @@ public abstract class EventDetailEntryHolder<T extends EventPageBean> extends Ev
buttonEntry.setEnabled(false);
- /**
- * 응모형 - html 비디오 닫기
- *
- * @return
- */
-
- public abstract boolean dispatchBackPressed();