Android 错误信息: java.lang.StackOverflowError: stack size 8MB

详细的错误信息:

java.lang.StackOverflowError: stack size 8MB                 
android.os.TransactionTooLargeException: data parcel size 19874096 bytes            

原因:

在fragment中
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) 
方法中加载一个布局文件View view = inflater.inflate(R.layout.fragment_home, container);
中把container改成null;或者View view = inflater.inflate(R.layout.fragment_home, null,false);

你可能感兴趣的:(西瓜---Studio错误)