0

I am trying to use nested fragments with the v13 Android support library and I am unable to call getParentFragment(). I have use the v4 support library with nested fragments and have successfully made calls to getParentFragment.

Does the v13 Android support library support nested fragments? Or, can you only use nested fragments with the v4 support library, or if the app targets API 17?

4

2 回答 2

0

我有同样的问题。原来我的子片段扩展了片段。我将其更改为扩展 android.support.v4.app.Fragment 并且效果很好。

于 2014-10-22T06:32:44.810 回答
0

除非您知道它适合您,否则不要使用 v13:

此库旨在用于 Android 3.2(API 级别 13)及更高版本。它通过 (FragmentCompat) 类和其他片段支持类添加了对片段用户界面模式的支持。有关片段的更多信息,请参阅片段开发人员指南。有关 v13 支持库 API 的详细信息,请参阅 API 参考中的 android.support.v13 包。

使用支持库的 v4

于 2013-07-31T22:26:51.167 回答