サポートライブラリをv-26.1.0からv-27.0.0にアップデートした後で、私のフラグメントに複数のエラーがあります。空のフラグメントのためのアンドロイドスタジオのテンプレートからサポートライブラリを27.0.0にアップデートした後でフラグメントに複数のエラーが発生しました
Error: Smart cast to 'Bundle' is impossible, because 'arguments' is a mutable property that could have been changed by this time.
Error: 'onCreateView' overrides nothing
Error: 'onViewCreated' overrides nothing
Error: Type mismatch: inferred type is View? but View was expected
Error: Type mismatch: inferred type is Context? but Context was expected
Error: Type mismatch: inferred type is FragmentActivity? but Context was expected
Error: Type mismatch: inferred type is FragmentActivity? but Context was expected
:ここ
いくつかのこれらのエラーのリストです。これらのエラーのすべての
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
if (arguments != null) {
mParam1 = arguments.getString(ARG_PARAM1)
mParam2 = arguments.getString(ARG_PARAM2)
}
}
override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?, savedInstanceState: Bundle?): View? {
return inflater!!.inflate(R.layout.fragment_blank, container, false)
}
override fun onViewCreated(view: View?, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
}
これらのエラーの原因となるコード例を示してください。新しいコード例の作成に関するヒントについては、[mcve]を参照してください。 –