FragmentTransaction.replace() not working

后端 未结 5 1813
星月不相逢
星月不相逢 2021-01-07 22:37

I have a ListFragment displaying a list of items that created by the user. I have a ListView with it\'s id set to \"@android:id/list\" and a

5条回答
  •  醉酒成梦
    2021-01-07 22:46

    An other problem that solved the issue in my case were diffentent API imports.

    Make sure, that you use "support.v4" or the "original" implementations from API 11 and do not mix them. (this can happen, in my case: TransactionManager was v4 and the Activity an older version, or the other way around)

提交回复
热议问题