iOS Question Set cell height programmatically for a single cell in TableView?

davepamn

Active Member
Licensed User
Longtime User
you can't set a single table cell height

instead, set the tableview row height

B4X:
Private tvContracts As TableView

tvContracts.Initialize("tvContracts",False)
 tvContracts.RowHeight=50dip
 
Upvote 0

davepamn

Active Member
Licensed User
Longtime User
B4X:
Private Sub Createitem2(tvTableview As TableView, sLine1Value As String,sLine2Value As String, iAlpha As Int, iRed As Int, iGreen As Int, iBlue As Int,iFontSize As Int,iFontColor As Int) As Panel

    Dim oPanel As Panel

    Dim lblLine1Data As Label

    Dim lblLine2Data As Label

    Dim iOffset As Int=0

    oPanel.Initialize("2ItemPanel")

    lblLine1Data.Initialize("line1data")

    lblLine1Data.Text=sLine1Value
    
    lblLine1Data.Tag=sLine1Value

    lblLine1Data.color=Colors.ARGB(iAlpha,iRed,iGreen,iBlue)

    lblLine1Data.Font=Font.CreateNew(iFontSize)

    lblLine1Data.TextColor=iFontColor

    iOffset=tvTableview.RowHeight/2

    oPanel.Width=100%x

    oPanel.Height=tvTableview.RowHeight

    oPanel.AddView(lblLine1Data,0,0,100%x,tvTableview.RowHeight/2)

    'Line 2

    lblLine2Data.Initialize("line2data")

    lblLine2Data.Text=sLine2Value

    lblLine2Data.Tag=sLine2Value

    lblLine2Data.color=Colors.ARGB(iAlpha,iRed,iGreen,iBlue)

    lblLine2Data.Font=Font.CreateNew(iFontSize)

    lblLine2Data.TextColor=iFontColor

    oPanel.AddView(lblLine2Data,20dip,iOffset,100%x ,tvTableview.RowHeight/2)

    Return(oPanel)

End Sub

You can create a panel then add two dynamically create labels whose height is half the tableview row height.
 
Last edited:
Upvote 0

Pendrush

Well-Known Member
Licensed User
Longtime User
Than you for reply. I have already made something similar, what is problem...
Categorie(s) have one line of text, their child (sub cats) are in 3 line of text with image on left ....
My row height is minimum height for sub cats, but then categories with only one line of text (even centered with lager font size) have a lot of space above and below text.
 
Upvote 0

davepamn

Active Member
Licensed User
Longtime User
Set the Rowheight to the height of three of your labels then place each label in a panel offsetting by the height of the label. Return the panel to the table cell for the tableview.

In my example, I used two labels to simulate AddTwoLines
 
Upvote 0
Top