FragmentManager ADD Xamarin 问题 Android

Problem with FragmentManager ADD Xamarin Android

早上好,我正在使用 google 翻译器: 我正在使用 FragmentManager ADD 在片段之间导航并保存前一个片段的状态,这样当我按回它时它会保持不变。 But when selecting an item and adding the new fragment to the container, the layout is displayed without problems and completely covers the previous one, the problem is that the controls of the previous fragment are still active and when pressing click on different sides of the new片段它调用前一个过程。有人可以告诉我发生了什么事吗?希望得到您的帮助,在此先感谢您。

Android.Support.V4.App.Fragment fragment = new FamiliasProductosDetalleFragment();

        fragment.Arguments = Intent;

        FragmentManager.BeginTransaction()
             .Add(Resource.Id.content_frame, fragment)
             //.Replace(Resource.Id.content_frame,fragment)
             
             .AddToBackStack(null)
             .Commit();

在顶部显示的片段的根布局中添加 android:clickable="true"android:focusable="true"

由于您没有替换内容框架,而只是在顶部添加片段,因此点击会掉落并到达下面的片段。