iOS Question Why is there a lot of space on both sides of iTableView items

chjk

Member
Licensed User
Longtime User
Why is there a lot of space on both sides of iTableView items, device is iPad2, ios10.2, iTableView1.21
B4X:
dim tv as TAbleView
......
sub page_Resize(Width as Float, Height as Float)
  if tv.IsInitialized= false then
    tv.Initialize("tv",False)
    page.RootPanel.AddView(tv,0,0,width,height)
  end if
  tv.AddTwoLines("line1","line2")
  tv.ReloadAll
end sub
 

Attachments

  • listview.jpg
    listview.jpg
    16.2 KB · Views: 213
Top