Error:(72, 42) Error: Incompatible Types: FragmentActivity Cannot Be Converted To Fragment
I am having so issues with my project, i am getting the error: Error:(72, 42) error: incompatible types: FragmentActivity cannot be converted to Fragment. Could anyone assist m
Solution 1:
objFragment should be initialized by Fragment, like this:
Fragment objFragment = null;
instead of:
FragmentActivity objFragment = null;
Post a Comment for "Error:(72, 42) Error: Incompatible Types: FragmentActivity Cannot Be Converted To Fragment"