У меня проблема с тем, что я не могу изменить тему стиля. Я хочу убедиться, что каждый раз при переходе к разным фрагментам тема приложения будет меняться. Надежда может помочь мне решить эту проблему. Заранее спасибо.
![enter image description here](https://i.stack.imgur.com/IEQp0.png)
class MainKonsesiFragment : Fragment() {
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,savedInstanceState: Bundle?): View? {
//create ContextThemeWrapper from the original Activity Context with the custom theme
val context = ContextThemeWrapper(activity, R.style.AppKonsesiTheme)
//clone the inflater using the ContextThemeWrapper
val localInflater = inflater.cloneInContext(context)
val binding:FragmentMainKonsesiBinding = DataBindingUtil.inflate(localInflater,R.layout.fragment_main_konsesi,container,false)
binding.cardInputPemantauan.setOnClickListener(
Navigation.createNavigateOnClickListener(R.id.action_mainKonsesiFragment_to_inputPemantauanFragment)
)
binding.cardListKonsesi.setOnClickListener(
Navigation.createNavigateOnClickListener(R.id.action_mainKonsesiFragment_to_listKonsesiFragment)
)
return binding.root
}
}