java.lang.StackOverFlow error. Suspected too many views?
Solution 1:
You have (way) too many nested layouts. You can check out the official Android blog at d.android.com to get tips and tricks on how to optimize layouts.
Solution 2:
in my case I resolved by in
onCreateView
rootView = inflater.inflate(R.layout.fragment_interest_list, container); return rootView;
by adding attachToRoot parameter
rootView = inflater.inflate(R.layout.fragment_interest_list,container,false); return rootView;