【Android,Kotlin】DialogFragmentでRecyclerViewのdividerをセットしても表示されない
DialogFragment内のRecyclerViewでdividerが表示されない 普段RecyclerViewの行間の仕切り線を以下の様なコードで表示している。 (addItemDecoration)
recyclerView.apply { this.layoutManager = linearLayoutManager this.adapter = adapter this.addItemDecoration( DividerItemDecoration(context, linearLayoutManager.orientation) ) } ActivityやFragmentの場合はこれでオーケーだが、DialogFragmentやBottomSheetDialogFragment内で利用しているときは表示されない。