Kotlin中var bundle = Bundle() 传值arguments.getString出现问题
import androidx.fragment.app.Fragment
Smart cast to 'Bundle' is impossible, because 'arguments' is a mutable property that could have been changed by this time
改用
var mStrategy:String = requireArguments().getString("strategy").toString()
