File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
app/src/main/java/com/fmt/github/repos/delegate Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 11package com.fmt.github.repos.delegate
22
33import android.app.Activity
4- import android.util.Log
54import android.view.KeyEvent
65import android.view.ViewGroup
76import androidx.lifecycle.Lifecycle
@@ -28,25 +27,21 @@ class WebDelegate(
2827 @OnLifecycleEvent(Lifecycle .Event .ON_CREATE )
2928 fun onCreate () {
3029 webContainer.onCreate(mActivity, mViewGroup, mWebUrl)
31- Log .e(" fmt" , " onCreate" )
3230 }
3331
3432 @OnLifecycleEvent(Lifecycle .Event .ON_PAUSE )
3533 fun onPause () {
3634 webContainer.onPause()
37- Log .e(" fmt" , " onPause" )
3835 }
3936
4037 @OnLifecycleEvent(Lifecycle .Event .ON_RESUME )
4138 fun onResume () {
4239 webContainer.onResume()
43- Log .e(" fmt" , " onResume" )
4440 }
4541
4642 @OnLifecycleEvent(Lifecycle .Event .ON_DESTROY )
4743 fun onDestroy () {
4844 webContainer.onDestroy()
49- Log .e(" fmt" , " onDestroy" )
5045 }
5146
5247 fun back () = webContainer.back()
You can’t perform that action at this time.
0 commit comments