I want to display an excel sheet in my android application. I have googled and yet cannot find a starting tip to render an excel file using android components. If anybody knows any thing please give me some valuable hint.
You can use Apache POI or Java Excel API.
In android jxl.jar is use for create excel sheet. and it is available at here
and you can create excel sheet by using following code.File root = Environment.getExternalStorageDirectory();File gpxfile = new File(root, sFileName);FileWriter writer = new FileWriter(gpxfile);writer.append("NAME");
Try GridView.
来源:https://stackoverflow.com/questions/8048266/excel-sheet-display-in-android