This should be a fairly simple question to answer. I looked around and couldn't find any topics on this syntax, and the "..." makes searching for it difficult on Google. I'm working on a simple test application for copying a database file from its protected location on an un-rooted Android phone to a place on the SD Card that I can access for viewing with the sqlite3 database viewing tool. I know this seems like a roundabout way of doing things, but the emulator refuses to open on my netbook, so I'm using my cell phone to test the development for right now.
The code has already been written, so I'm borrowing it from here and adapting it to my code. I've come across this little snippet of code:
private class ExportDatabaseFileTask extends AsyncTask<String, Void, Boolean> {
private final ProgressDialog dialog = new ProgressDialog(ManageData.this);
// can use UI thread here
protected void onPreExecute() {
this.dialog.setMessage("Exporting database...");
this.dialog.show();
}
// automatically done on worker thread (separate from UI thread)
protected Boolean doInBackground(final String... args) {
I've never seen the argument final String... args before. What does this mean/do?
Thank you! Moscro