Fragment Container communication - Tuong-Nguyen/Android GitHub Wiki

Fragment can notify Activity through OnFragmentInteractionInterface interface. Activity can interact with Fragment using properties & methods of the Fragment class

Main points: Activity knows Fragment through its API (ie: its public properties & methods) Fragment does not know anything about Activity using it except OnFragementInteractionListener interface.

Fragment - Container communication