소스 검색

Add CoverEditorDialog.onViewCreated to make setting attribute at correct time

Wayne 6 년 전
부모
커밋
2408e72e19
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      src/main/java/com/bomostory/sceneeditmodule/cover/CoverEditorDialog.kt

+ 6 - 0
src/main/java/com/bomostory/sceneeditmodule/cover/CoverEditorDialog.kt

@@ -19,6 +19,7 @@ class CoverEditorDialog : DialogFragment() {
 
     private val dialogTag = this::class.java.simpleName
 
+    lateinit var onViewCreated: Runnable
     var onSave: View.OnClickListener? = null
     var onCancel: View.OnClickListener? = null
     var storyName: String
@@ -94,6 +95,11 @@ class CoverEditorDialog : DialogFragment() {
         }
     }
 
+    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
+        super.onViewCreated(view, savedInstanceState)
+        onViewCreated.run()
+    }
+
     fun show(manager: FragmentManager?) {
         manager?.apply {
             val ft = beginTransaction()