将片段添加到以编程方式生成的FrameLayout

时间:2019-05-07 22:02:36

标签: c# android android-fragments xamarin

我继承了一些需要更改其工作方式的代码。原来的方式现在没有所需的灵活性。

该应用程序是一个表单生成器,因此必须按需创建UI。这是Xamarin原生的,不是Xamarin形式。

将以编程方式为每个表单问题创建一个FrameLayout,将其添加到视图中,然后将一个片段添加到此FrameLayout中。加载UI以显示进度圈后,所有这些操作都会在OnCreateView之后发生。

在处理了一堆异常之后,我陷入了异常之中

Java.Lang.IllegalArgumentException: No view found for id 0x50 (unknown) for fragment UploadFragment{a31e878 #7 id=0x50 upload_80}

我的猜测是,当试图显示片段时,FrameLayout不存在。

OnCreate()完成后运行OnCreateView()方法后,发生异常。

我找不到用于以片段方式以编程方式添加FrameLayouts的任何代码先例。

代码段

frame = new FrameLayout(this.Context);
frame.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WrapContent, ViewGroup.LayoutParams.WrapContent);
upload = new Widgets.UploadFragment(control, binding, Inflater, a, xFormInstance);
MainFormLayout.AddView(frame);
frame.Id = control.id;
fragmentTx.Add(frame.Id, upload, $"upload_{control.id}");    
fragmentTx.Commit();

任何建议将不胜感激。谢谢。

扩展说明

投入所有工作可能要多一些,但会尽我所能投入。 页面的层次结构是

Activity -> FormFragment -> UploadFragment

因此,UploadFragment的父级也是一个片段,而不是Activity。

上传片段

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
    <RelativeLayout>
        <LinearLayout>
            <TextView/>
            <ImageButton/>
        </LinearLayout>
        <ImageView/>
    </RelativeLayout>
</LinearLayout>

代码

 public override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
        }

 public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
        {
            // Use this to return your custom view for this Fragment
            _inflater = inflater;
            v = _inflater.Inflate(Resource.Layout.BindImageInput, container, false);            
            SetUpload();
            return v;
            //return base.OnCreateView(inflater, container, savedInstanceState);
        }

SetUpload()将标签的值,按钮的事件以及图像(如果存在)设置为imageview。它还处理一些与表单事件处理有关的额外事件。停止运行SetUpload()仍然会发生异常。

FormFragment

<RelativeLayout>
    <TextView />
    <View />
    <ScrollView>
        <LinearLayout />
    </ScrollView>
</RelativeLayout>

代码

public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
        {
            ShowLoading();
            View v = inflater.Inflate(Resource.Layout.Form2, container, false);    
            MainFormLayout = v.FindViewById<LinearLayout>(Resource.Id.mainFormView);
            MainScrollView = v.FindViewById<ScrollView>(Resource.Id.mainScrollView);

            formBuilderWorker = new BackgroundWorker();
            return v;
        }

OnResume()调用存在formBuilderWorker.DoWork()的方法

formBuilderWorker.DoWork += delegate
{
    Form.LoadForm(null, this, FormInstance);
}

LoadForm()使用Interface来告诉FormFragment显示控件。其中之一就是UploadFragment。

public void AddControl(Controls control, int? sectionID)
        {
///CODE REMOVED FOR OTHER CONTROL TYPES (they still use old codebase)
            Bindings binding = XForm.GetBindingForControl(control, FormInstance);
            try
            {
                // Create a new fragment and a transaction.
                FragmentTransaction fragmentTx = this.FragmentManager.BeginTransaction();    

                FrameLayout frame = null;    
                Widgets.UploadFragment upload = null;
                frame = new FrameLayout(this.Context);
                frame.LayoutParameters = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.WrapContent, ViewGroup.LayoutParams.WrapContent);
                frame.Id = control.id;
                upload = new Widgets.UploadFragment(control, binding, Inflater, a, xFormInstance);                    
                MainFormLayout.AddView(frame);
                ControlViews.Add(frame);             
                fragmentTx.Replace(frame.Id, upload, $"upload_{control.id}");
                //fragmentTx.Show(upload);
                fragmentTx.Commit();


            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
            }
        }

这是清除后的代码,可删除尽可能多的不相关代码。显示的代码是有问题的代码通过的路径。

1 个答案:

答案 0 :(得分:0)

我发现了问题。我从上面的代码中提取的一部分是Activity.RunOnUiThread()调用,这些调用将框架添加到主视图中。该问题是由线程定时引起的。 UI线程花费了很长时间才能将框架添加到视图中,以至于FragmentTransaction尝试提交更改时,框架仍然不存在。