如何在标签布局中显示列表视图?

时间:2018-06-10 21:59:19

标签: android listview xamarin

您可以创建动态标签布局,还可以创建动态列表视图。现在我如何在框架布局中显示列表视图内容?

        List<string> cu = new List<string>();
        cu.Add("1");
        cu.Add("2");
        ListView listView = new ListView(this);
        TabContentListAdapter tabContentListAdapter = new 
        TabContentListAdapter(this, cu);
        listView.SetAdapter(tabContentListAdapter);

        tabView = new SfTabView(this.ApplicationContext);

        var favoritesGrid = new FrameLayout(listView.Context);

在这一行中,我将listView.Context传递给FrameLayout但是没有显示?!?!

注意:SfTabView是一个TabLayout控件库。

1 个答案:

答案 0 :(得分:0)

您必须使用addViewMethod

将listview添加到框架布局
favoritesGrid.addView(listView);

您可能还必须将布局参数设置为listView,以便根据自己的喜好来设置UI。请按照以下答案学习如何使用LayoutParams https://stackoverflow.com/a/2397869/4260786