如何在片段中实现片段(获取Android.Support.V4.App或Android.App转换错误)在Xamarin.Android中

时间:2017-04-28 06:50:34

标签: xamarin xamarin.android

我在我的项目中的片段中实现了一个片段但是无法做到这一点我在实现它时遇到了这个错误。 When i use this same code a new sample project i am able to create and bind a fragment in to another fragment successfully, where as i am unable to do the same while implementing in real project

当我使用相同的代码时,一个新的示例项目我能够成功创建并将片段绑定到另一个片段,而在实际项目中实现时我无法做到这一点 Also tried doing this which did not help me

我也尝试过使用getActivity(),Activity()和所有在线资源但无法做到这一点

任何人都可以解决我面临的这个问题。

1 个答案:

答案 0 :(得分:0)

只需使用以下代码优化您的代码:

Android.Support.V4.App.Fragment fragment = new FragmentForSliderView();
Android.Support.V4.App.FragmentTransaction fragmentTransaction = SupportFragmentManager.BeginTransaction();
fragmentTransaction.Add(Resource.Id.AddSlider, fragment).Commit();