Android Question Help with b4xTable

RushilD

Member
Licensed User
Hello ,

I have a question and need a help.

I have some data coming from Bluetooth in a for loop 0-100
After parsing the raw data I am left with the following

name and Value

Question:
Can I display the Name , value in a b4xTable . As soon as a new raw data comes it is shown on the next row. I would later like to export the table in an excel.

if yes then can someone show an example ? Of how to display on the b4xTable ?

I tried the example from b4xTable and unfortunately the table is blank.

thank you
 

aeric

Expert
Licensed User
Longtime User
Go through the tutorial:

Can I display the Name , value in a b4xTable
Yes. If you follow the tutorial, you need to add 2 columns using B4XTable1.AddColumn. Then add your data as List using B4XTable1.SetData(data).

As soon as a new raw data comes it is shown on the next row.
Update the list and then use SetData each time.

I would later like to export the table in an excel.
https://www.b4x.com/android/forum/threads/xlutils-jpoi-5-read-and-write-ms-excel-workbooks.129969/
 
Upvote 0
Top