Hi at all!
I am creating a project to scan the warehouse codes.
I would like to create an application that allows me to read barcodes and find the result in a csv file.
I had thought of such a thing:
download the updated CSV file from GDrive
scan the barcode
I look for the correspondence of the scan code in the downloaded csv file
have the second or third line of the csv as an answer
Search community for QRcodes. Use the advice to scan the code and retrieve a bar code value.
convert csv to a List, then search the List for the bar code
What have you tried? What you need to do depends on your familiarity with App Inventor.
Here are some resources to help you learn to use the AI2 tools. A very good way to learn App Inventor is to read the free Inventor's Manual here in the AI2 free online eBook App Inventor 2 Book: Create Your Own Android Apps ... the links are at the bottom of the Web page. The book 'teaches' users how to program with AI2 blocks.
The first problem I encountered is downloading the GDrive file, AI2 downloads me a file with .tmp extension and I don't understand where the error is.
I have already created the method of reading with barcode and I can get the result of the reading carried out.
With this method the file is downloaded successfully.
Now the problem is in the read and write permissions which are not allowed. I try with "android.permission.READ_EXTERNAL_STORAGE" and "READ_EXTERNAL_STORAGE"
Now I would like to create a list view with the data inside the csv file.
Then, with the barcode scanner, enter the scanned text in the search bar of the listview.
How do i do it?