hi i create a Dynamic tab layout and also create dynamic list view . now how i can display list view content in frame layout?
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);
In this line, I pass the listView.Context to FrameLayout But not displayed؟!؟!
Note: SfTabView is a TabLayout control library.