Android Excel File Reader Application using Basic4Android - Tutorial Part 2

This is my continuation of my tutorial in creating a an Excel File Reader Application in Basic4Android. My part 1 tutorial is the creation of our main program but you have to add a class module and named it as "Table". To add a class module follow the picture below. Class Module Here's the complete code of our table.bas and write this code together with my main code in the first tutorial in Creating Excel File Reader Application in Android.
  1. Sub Class_Globals
  2.         Private StringUtils1 As StringUtils
  3.         Private SV As ScrollView
  4.         Public Header As Panel
  5.         Private Callback As Object
  6.         Private Event As String
  7.         Private SelectedRow As Int
  8.         Private Data As List
  9.         Private LabelsCache As List
  10.         Private minVisibleRow, maxVisibleRow As Int
  11.         Private visible As Boolean
  12.         Private visibleRows As Map
  13.         Public NumberOfColumns, ColumnWidth As Int
  14.         Public RowHeight, HeaderColor, TableColor, FontColor, HeaderFontColor As Int
  15.         Public FontSize As Float
  16.         Type RowCol (Row As Int, Col As Int)
  17.         Public Alignment As Int
  18.         Public SelectedDrawable(), Drawable1(), Drawable2() As Object
  19.         'Table settings
  20.         HeaderColor = Colors.Gray
  21.         RowHeight = 30dip
  22.         TableColor = Colors.LightGray
  23.         FontColor = Colors.Black
  24.         HeaderFontColor = Colors.White
  25.         FontSize = 14
  26.         Alignment = Gravity.LEFT 'change to Gravity.LEFT or Gravity.RIGHT for other alignments.
  27. End Sub
  28.  
  29. Public Sub Initialize (CallbackModule As Object, EventName As String, vNumberOfColumns As Int)
  30.         SV.Initialize2(0, "SV")
  31.         SV.Panel.Color = TableColor
  32.         Callback = CallbackModule
  33.         Event = EventName
  34.         innerClearAll(vNumberOfColumns)
  35. End Sub
  36.  
  37. 'Clears the table
  38. Public Sub ClearAll
  39.         innerClearAll(NumberOfColumns)
  40. End Sub
  41.  
  42. 'Sets the columns widths.
  43. 'Example: <code>Table1.SetColumnsWidths(Array As Int(100dip, 30dip, 30dip, 100%x - 160dip))</code>
  44. Public Sub SetColumnsWidths(Widths() As Int)
  45.         Dim v As View
  46.         For i = 0 To Widths.Length - 1
  47.                 v = Header.GetView(i)
  48.                 v.Width = Widths(i) - 1dip
  49.                 If i > 0 Then
  50.                         v.Left = Header.GetView(i-1).Left + Widths(i-1) + 1dip
  51.                 End If
  52.         Next
  53.         Dim lbls() As Label
  54.         For i = 0 To visibleRows.Size - 1
  55.                 lbls = visibleRows.GetValueAt(i)
  56.                 For lbl = 0 To lbls.Length - 1
  57.                         lbls(lbl).SetLayout(Header.GetView(lbl).Left, lbls(lbl).Top, _
  58.                                 Header.GetView(lbl).Width, RowHeight)
  59.                 Next
  60.         Next
  61. End Sub
  62.  
  63. Private Sub innerClearAll(vNumberOfColumns As Int)
  64.         For i = SV.Panel.NumberOfViews -1 To 0 Step -1
  65.                 SV.Panel.RemoveViewAt(i)
  66.         Next
  67.         NumberOfColumns = vNumberOfColumns
  68.         Dim Drawable1(NumberOfColumns) As Object
  69.         Dim Drawable2(NumberOfColumns) As Object
  70.         Dim SelectedDrawable(NumberOfColumns) As Object
  71.         For i = 0 To NumberOfColumns - 1
  72.                 Dim cd1, cd2, cd3 As ColorDrawable
  73.                 cd1.Initialize(Colors.White, 0)
  74.                 cd2.Initialize(0xFF98F5FF, 0)
  75.                 cd3.Initialize(0xFF007FFF, 0)
  76.                 Drawable1(i) = cd1
  77.                 Drawable2(i) = cd2
  78.                 SelectedDrawable(i) = cd3
  79.         Next
  80.         SV.Panel.Height = 0
  81.         SelectedRow = -1
  82.         minVisibleRow = -1
  83.         maxVisibleRow = 0
  84.         Data.Initialize
  85.         LabelsCache.Initialize
  86.         visibleRows.Initialize
  87.         SV.ScrollPosition = 0
  88.         DoEvents
  89.         SV.ScrollPosition = 0
  90.         For i = 1 To 80 'fill the cache to avoid delay on the first touch
  91.                 LabelsCache.Add(CreateNewLabels)
  92.         Next
  93.         If visible Then
  94.                 SV_ScrollChanged(0)
  95.         End If
  96. End Sub
  97.  
  98. Private Sub SV_ScrollChanged(Position As Int)
  99.         Dim currentMin, currentMax As Int
  100.         currentMin = Max(0, Position / RowHeight - 30)
  101.         currentMax = Min(Data.Size - 1, (Position + SV.Height) / RowHeight + 30)
  102.         If minVisibleRow > -1 Then
  103.                 If minVisibleRow < currentMin Then
  104.                         'need to hide the upper rows
  105.                         For I = minVisibleRow To Min(currentMin - 1, maxVisibleRow)
  106.                                 HideRow(I)
  107.                         Next
  108.                 Else If minVisibleRow > currentMin Then
  109.                         'need to show the upper rows
  110.                         For I = currentMin To Min(minVisibleRow - 1, currentMax)
  111.                                 ShowRow(I)
  112.                         Next
  113.                 End If
  114.                 If maxVisibleRow > currentMax Then
  115.                         'need to hide the lower rows
  116.                         For I = maxVisibleRow To Max(currentMax + 1, minVisibleRow) Step -1
  117.                                 HideRow(I)
  118.                         Next
  119.                 Else If maxVisibleRow < currentMax Then
  120.                         'need to show the lower rows
  121.                         For I = currentMax To Max(maxVisibleRow + 1, currentMin) Step -1
  122.                                 ShowRow(I)
  123.                         Next
  124.                 End If
  125.         End If
  126.         minVisibleRow = currentMin
  127.         maxVisibleRow = currentMax
  128. End Sub
  129.  
  130. 'Adds the tablet to the activity.
  131. Public Sub AddToActivity(Act As Activity, Left As Int, Top As Int, Width As Int, Height As Int)
  132.         visible = True
  133.         Header.Initialize("")
  134.         Header.Color = TableColor
  135.         Act.AddView(Header, Left, Top , Width, RowHeight)
  136.         Act.AddView(SV, Left, Top + RowHeight, Width, Height - RowHeight)
  137.         ColumnWidth = SV.Width / NumberOfColumns
  138.        
  139.         SV_ScrollChanged(0)
  140.  
  141. End Sub
  142.  
  143. 'Adds a row to the table
  144. 'Example:<code>Table1.AddRow(Array As String("aaa", "ccc", "ddd", "eee"))</code>
  145. Public Sub AddRow(Values() As String)
  146.         If Values.Length <> NumberOfColumns Then
  147.                 Log("Wrong number of values.")
  148.                 Return
  149.         End If
  150.         Data.Add(Values)
  151.         Dim lastRow As Int
  152.         lastRow = Data.Size - 1
  153.         If lastRow < (SV.ScrollPosition + SV.Height) / RowHeight + 1 Then
  154.                 ShowRow(lastRow)               
  155.         End If
  156.         SV.Panel.Height = Data.Size * RowHeight
  157. End Sub
  158.  
  159. Public Sub RemoveRow(Row As Int)
  160.         SV_ScrollChanged(SV.ScrollPosition)
  161.         Dim sr As Int = SelectedRow
  162.         SelectRow(-1)
  163.         Data.RemoveAt(Row)
  164.         If Data.Size = 0 Then
  165.                 ClearAll
  166.                 Return
  167.         End If
  168.         For i = minVisibleRow To maxVisibleRow
  169.                 HideRow(i)
  170.         Next
  171.         maxVisibleRow = Min(maxVisibleRow, Data.Size - 1)
  172.         minVisibleRow = Min(minVisibleRow, Data.Size - 1)
  173.         For i = minVisibleRow To maxVisibleRow
  174.                 ShowRow(i)
  175.         Next
  176.         If sr = Row Then
  177.                 sr = -1
  178.         Else If sr > Row Then
  179.                 sr = sr - 1
  180.         End If
  181.         SelectRow(sr)
  182.         SV.Panel.Height = Data.Size * RowHeight
  183.         SV_ScrollChanged(Min(SV.ScrollPosition, SV.Panel.Height))
  184. End Sub
  185.  
  186. Private Sub ShowRow(row As Int)
  187.         If visibleRows.ContainsKey(row) Then Return
  188.         'Log("ShowRow: " & row)
  189.         Dim lbls() As Label
  190.         Dim values() As String
  191.         lbls = GetLabels(row)
  192.         values = Data.Get(row)
  193.         visibleRows.Put(row, lbls)
  194.         Dim rowColor() As Object
  195.         If row = SelectedRow Then
  196.                 rowColor = SelectedDrawable
  197.         Else If row Mod 2  = 0 Then
  198.                 rowColor = Drawable1
  199.         Else
  200.                 rowColor = Drawable2
  201.         End If
  202.         For I = 0 To lbls.Length - 1
  203.                 SV.Panel.AddView(lbls(I), Header.GetView(I).Left, row * RowHeight, Header.GetView(I).Width, _
  204.                         RowHeight - 1dip)
  205.                 lbls(I).Text = values(I)
  206.                 lbls(I).Background = rowColor(I)
  207.         Next
  208. End Sub
  209.  
  210. Private Sub IsRowVisible(Row As Int) As Boolean
  211.         Return Row < (SV.ScrollPosition + SV.Height) / (RowHeight + 1) AND _
  212.                 Row > SV.ScrollPosition / RowHeight
  213. End Sub
  214.  
  215. Private Sub HideRow (Row As Int)
  216.         'Log("HideRow: " & row)
  217.         Dim lbls() As Label
  218.         lbls = visibleRows.Get(Row)
  219.         If lbls = Null Then
  220.                 Log("HideRow: (null) " & Row)
  221.                 Return
  222.         End If
  223.         For I = 0 To lbls.Length - 1   
  224.                 lbls(I).RemoveView
  225.         Next
  226.         visibleRows.Remove(Row)
  227.         LabelsCache.Add(lbls)
  228. End Sub
  229.  
  230. Private Sub GetLabels(Row As Int) As Label()
  231.         Dim lbls() As Label
  232.         If LabelsCache.Size > 0 Then
  233.                 'Log("from cache")
  234.                 lbls = LabelsCache.Get(LabelsCache.Size - 1)
  235.                 LabelsCache.RemoveAt(LabelsCache.Size - 1)
  236.         Else
  237.                 lbls = CreateNewLabels         
  238.         End If
  239.         For I = 0 To lbls.Length - 1
  240.                 Dim rc As RowCol
  241.                 rc = lbls(I).Tag
  242.                 rc.Row = Row
  243.         Next
  244.         Return lbls
  245. End Sub
  246.  
  247. Private Sub CreateNewLabels As Label()
  248.         Dim lbls(NumberOfColumns) As Label
  249.         For I = 0 To NumberOfColumns - 1
  250.                 Dim rc As RowCol
  251.                 rc.Col = I
  252.                 Dim l As Label
  253.                 l.Initialize("cell")
  254.                 l.Gravity = Alignment
  255.                 l.TextSize = FontSize
  256.                 l.TextColor = FontColor
  257.                 l.Tag = rc
  258.                 lbls(I) = l
  259.         Next
  260.         Return lbls
  261. End Sub
  262. 'Set the headers values
  263. 'Example:<code>Table1.SetHeader(Array As String("Col1", "Col2", "Col3"))</code>
  264. Public Sub SetHeader(Values() As String)
  265.         For I = Header.NumberOfViews - 1 To 0 Step -1
  266.                 Header.RemoveViewAt(I)
  267.         Next
  268.         For I = 0 To NumberOfColumns - 1
  269.                 Dim l As Label
  270.                 l.Initialize("header")
  271.                 l.Gravity = Gravity.CENTER
  272.                 l.TextSize = FontSize
  273.                 l.Color = HeaderColor
  274.                 l.TextColor = HeaderFontColor
  275.                 l.Text = Values(I)
  276.                 l.Tag = I
  277.                 Header.AddView(l, ColumnWidth * I, 0, ColumnWidth - 1dip, RowHeight)
  278.         Next
  279. End Sub
  280.  
  281. Private Sub Cell_Click
  282.         Dim rc As RowCol
  283.         Dim l As Label
  284.         l = Sender
  285.         rc = l.Tag
  286.         SelectRow(rc.Row)
  287.         If SubExists(Callback, Event & "_CellClick") Then
  288.                 CallSub3(Callback, Event & "_CellClick", rc.Col, rc.Row)
  289.         End If
  290. End Sub
  291.  
  292. Private Sub Header_Click
  293.         Dim l As Label
  294.         Dim col As Int
  295.         l = Sender
  296.         col = l.Tag
  297.         If SubExists(Callback, Event & "_HeaderClick") Then
  298.                 CallSub2(Callback, Event & "_HeaderClick", col)
  299.         End If
  300. End Sub
  301.  
  302. 'Gets the value of the given cell.
  303. Public Sub GetValue(Col As Int, Row As Int)
  304.         Dim values() As String
  305.         values = Data.Get(Row)
  306.         Return values(Col)
  307. End Sub
  308. 'Sets the value of the given cell.
  309. Public Sub SetValue(Col As Int, Row As Int, Value As String)
  310.         Dim values() As String
  311.         values = Data.Get(Row)
  312.         values(Col) = Value
  313.         If visibleRows.ContainsKey(Row) Then
  314.                 Dim lbls() As Label
  315.                 lbls = visibleRows.Get(Row)
  316.                 lbls(Col).Text = Value
  317.         End If
  318. End Sub
  319.  
  320. Private Sub SelectRow(Row As Int)
  321.         Dim prev As Int
  322.         prev = SelectedRow
  323.         SelectedRow = Row
  324.         'remove the color of previously selected row
  325.         If prev > -1 Then
  326.                 If visibleRows.ContainsKey(prev) Then
  327.                         HideRow(prev)
  328.                         ShowRow(prev)
  329.                 End If
  330.         End If
  331.         SelectedRow = Row
  332.         For col = 0 To NumberOfColumns - 1
  333.                 If visibleRows.ContainsKey(SelectedRow) Then
  334.                         HideRow(SelectedRow)
  335.                         ShowRow(SelectedRow)
  336.                 End If
  337.         Next
  338. End Sub
  339.  
  340. 'Makes the given row visible.
  341. Public Sub JumpToRow(Row As Int)
  342.         SV.ScrollPosition = Row * RowHeight
  343. End Sub
  344.  
  345. 'Clears the previous table and loads the CSV file to the table.
  346. 'You should first add the Table to the activity before calling this method.
  347. Public Sub LoadTableFromCSV(Dir As String, Filename As String, HeadersExist As Boolean)
  348.        
  349.         Dim List1 As List
  350.         Dim h() As String
  351.         If HeadersExist Then
  352.                 Dim headers As List
  353.                 List1 = StringUtils1.LoadCSV2(Dir, Filename, ",", headers)
  354.                 Dim h(headers.Size) As String
  355.                 For i = 0 To headers.Size - 1
  356.                         h(i) = headers.Get(i)
  357.                 Next
  358.         Else
  359.                 List1 = StringUtils1.LoadCSV(Dir, Filename, ",")
  360.                 Dim firstRow() As String
  361.                 firstRow = List1.Get(0)
  362.                 Dim h(firstRow.Length)
  363.                 For i = 0 To firstRow.Length - 1
  364.                         h(i) = "Col" & (i + 1)
  365.                 Next
  366.         End If
  367.         innerClearAll(h.Length)
  368.         ColumnWidth = SV.Width / NumberOfColumns
  369.         SetHeader(h)
  370.         For Each row() As String In List1
  371.                 AddRow(row)
  372.         Next
  373. End Sub
  374.  
  375. 'Saves the table to a CSV file.
  376. Public Sub SaveTableToCSV(Dir As String, Filename As String)
  377.         Dim headers(NumberOfColumns) As String
  378.         Dim i As Int
  379.         For Each l As Label In Header
  380.                 headers(i) = l.Text
  381.                 i = i + 1
  382.         Next
  383.         StringUtils1.SaveCSV2(Dir, Filename, ",", Data, headers)
  384. End Sub
  385.  
  386. Public Sub Size As Int
  387.         Return Data.Size
  388. End Sub
Please read the comment in the code (color "green") to understand what that code means. And then now you come up with an Excel File Reader that can view an Excel File. Best regards, Engr. Lyndon R. Bermoy IT Instructor/System Developer/Android Developer STI College - Surigao City 09126450702 [email protected] Follow and add me in my Facebook Account: www.facebook.com/donzzsky. I can also make thesis and documentation. Just contact the number above. Visit my page on Facebook at: https://www.facebook.com/BermzISware

Comments

Add new comment