In my application, when I pause, after resuming, I get duplicate views stacked on top of each other, with the topmost ones being the only editable ones. My onCreateView () is below. Any suggestions?
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View v = super.onCreateView(inflater, container, savedInstanceState); Item currentItem = Global.DataManager.getItem();
source share