Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any spreadsheet widgets for Android?

I have an Excel file that I want to use in my application. Using jexcel I read and write an Excel file in the application, but I don't know how to set up the view for that file in my application. Are there any spreadsheet widgets available for Android to show an Excel file?

like image 988
Sreedev Avatar asked Jan 09 '12 11:01

Sreedev


People also ask

Does Android have a spreadsheet app?

Google Sheets for Android has most of the same features as the web version, and with the Google Sheets app, you can start working in the web app and continue your work from your mobile device. Google Sheets is free for non-business use and works with a free Gmail email address.

Is there a Google Sheets widget?

Choose "Widgets" > "Integrations" > Google Sheets, or simply search for "sheets" when adding widgets to see our Google Sheets options. Once you've added the widget, open the widget's settings via the ellipsis ("...") at the top right corner of the widget.

Is there a widget for Excel?

Widgets are inserted in the spreadsheet from the Widgets tab of the SpreadsheetConverter task pane in Excel. Select the cell where you want to insert the widget; then select the type of widget from the task pane. An options dialog appears, in which you can specify the detailed settings for the widget.


2 Answers

Why not use a TableLayout widget and programatically fill in the rows and columns while looping through the excel data? TableLayout supports rows and columns.

Usage example: http://developer.android.com/resources/tutorials/views/hello-tablelayout.html

like image 112
aggregate1166877 Avatar answered Oct 14 '22 21:10

aggregate1166877


I think it'd be best to just use a GridView. Make a custom Adapter which fills a textview from the cell content, tie that to a GridView and there you go.

like image 29
Divide Avatar answered Oct 14 '22 21:10

Divide