I'm not finding how to interact with values in the...
# android
a
I'm not finding how to interact with values in the activity in a fragment. Is there something special that needs to be done with kotlin?
b
getActivity()
just shows as
activity
in Kotlin, so you can call like
activity!!.whateverMethodHere()
or
(activity as MainActivity).whateverMethod()