<Access activity menuItem from fragment and hide o...
# stackoverflow
u
Access activity menuItem from fragment and hide onButton click android In my ChatRoomActivity i have a menu with two menu items audioCall and videoCall Inside the activity there is the ConversationFragment and depending on some button actions i want to prevent the user to be able to make an audio/video call. So i want to have access to the menuItems of the hosting ChatRoomActivity. I tried the code below class ConversationFragment : Fragment(R.layout.conversation_fragment) { private var chatPhoneMenuItem: MenuItem? = null private var...