Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.Cells for Android via Java is platform-independent and can be used on any platform where the Android Runtime environment is installed and will run on Android systems running Android OS 2.0 or greater. At present, the component has been tested with:
// 1. Add maven repository into your build.gradle
repositories {
mavenCentral()
maven { url "http://repository.aspose.com/repo/" }
}
// 2. Add 'Aspose.Cells for Android via Java' JAR as a dependency
dependencies {
...
...
compile (group: 'com.aspose', name: 'aspose-cells', version: '25.9', classifier: 'android.via.java')
}This topic will guide you through the necessary steps to setup Aspose.Cells for Android via Java in Android Studio IDE, assuming that you already have the latest version of Android Studio installed on your machine and you have also acquired the latest version of Aspose.Cells for Android via Java package.
Aspose.Cells for Android via Java package can be downloaded from here. Please note, each release package of Aspose.Cells for Android via Java mainly consists of 2 files as detailed below.
Once the Android Studio IDE loads, click on File > New > New Project as shown below.

You can also create a new project from the Android Studio’s Welcome Screen as shown below.

Next, you will be prompt to specify the application name, domain & location to store the project files. You can choose to change the default values as per your choice or let them as they are, and click Next.

In the next step, you have to specify the Android Device you wish to host/run your application. Once selected, click on Next button.

Now you need to select the Activity from a predefined list of templates. In order to keep the demonstration simple, we have selected the Empty Activity template as shown below.

Click on Finish button on the Customize the Activity dialog as we will keep all the default settings as they are.

As soon as you click on the Finish button on the previous step, the IDE will start building the project as shown below. Let it finish or click the Cancel button.

Now the project has been loaded in the IDE, however, you may wish to change the view to Project so that you can view the complete hierarchy of the project files. In order to change the view, please check the following snapshot.

After changing the view to Project, find & load the build.gradle file in the editor and paste the following snippet as shown below.
dexOptions{
javaMaxHeapSize "4g"
}
Next, we will add the Aspose.Cells for Android via Java Jar to the project. There are 2 important steps as detailed below.

You will be prompt to select the module to which you wish to add the Aspose.Cells for Java.Android Jar as a library. Please choose appropriately and click OK.

You also need to add the APK file to the project. You have to copy the APK to the \app\src\main\assets folder. If you do not have the assets folder under the main folder, you can create one by right-clicking the main node in the Project view. Select New > Folder > Asset Folder.

Once the APK has been added to the project, it needs to be loaded by the project. There are 2 ways to load the APK as follow.
LibsLoadHelper.loadLibs(this); LibsLoadHelper.loadLibs(getApplicationContext());Now we are ready to write the code. In order to keep the demonstration easy to understand, we have added a Button widget to the layout and going to handle its click event as follow.
private class TestTask extends AsyncTask<Void, String, Boolean> {
@Override
protected Boolean doInBackground(Void... params) {
Boolean result = false;
Workbook book = new Workbook();
Worksheet sheet = book.getWorksheets().get(0);
Cells cells = sheet.getCells();
Cell cell = cells.get("A1");
cell.putValue("Hello World!");
try {
book.save(SD_PATH + "output.xlsx");
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
}When you run the application using the play button on IDE interface (or using SHIFT + F10) the emulator will load the application as shown below.

Clicking the button on the emulator will execute the code to create a new spreadsheet in the external storage folder of the emulator. You can access the file from the Android Device Monitor as shown below.


Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.