Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7893961
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:16:14+00:00 2026-06-03T07:16:14+00:00

I have a program with a screen that has about 50 buttons, it looks

  • 0

I have a program with a screen that has about 50 buttons, it looks rather ugly. Each button has an async download in it, it is just copied from button to button with the URL and file name saved as changed. I want to be able to change from using buttons to using one spinner, hopefully with just one async download task and the spinner operating as the way to select the download URL and the filename to save as. Is this even possible? After reading some documentation about it I got confused. Thanks for the help.

Update:

With the suggested code from below I created this:

public class SpinnerActivity extends Activity{


public static final int DIALOG_DOWNLOAD_PROGRESS = 0;
private Button startBtn;
private ProgressDialog mProgressDialog;

Spinner spDownloadFrom;
private ArrayAdapter<CharSequence> spinnerArrayAdapter;
String url[]= {"www.abc.com/download/a.txt",
    "www.abc.com/download/a.txt",
    "www.abc.com/download/a.txt",
    "www.abc.com/download/a.txt",
    "www.abc.com/download/a.txt",
    "www.abc.com/download/a.txt",
    "www.abc.com/download/a.txt"
    };
String links[]= {"Server 1",
    "Server 2",
    "Server 3",
    "Server 4",
    "Server 5",
    "Server 6",
    "Server 7",
    };
public void onCreate(Bundle savedInstanceState )
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

mProgressDialog = new ProgressDialog(SpinnerActivity.this);
mProgressDialog.setMessage("Please be patient, file downloading...");
mProgressDialog.setIndeterminate(false);
mProgressDialog.setMax(100);
mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);


spDownloadFrom=(Spinner)findViewById(R.id.Spinner01);

spinnerArrayAdapter = new ArrayAdapter<CharSequence>(this, android.R.layout.simple_spinner_item, links);
spinnerArrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spDownloadFrom.setAdapter(spinnerArrayAdapter);

spDownloadFrom.setOnItemSelectedListener(new SpinnerListener(spDownloadFrom));
}
public class SpinnerListener implements OnItemSelectedListener
{
Spinner sp;
public SpinnerListener(View v)
{
    sp=(Spinner)findViewById(v.getId());
}
@Override
public void onItemSelected(AdapterView<?> arg0, View v, int arg2,
        long arg3) {
    //Call to download class
        new DownloadFile().equals(url[arg2].toString());


}
@Override
public void onNothingSelected(AdapterView<?> arg0) {
    // TODO Auto-generated method stub

}
}
class DownloadFile extends AsyncTask<String, Integer, String> { //put your download code

@Override
protected void onPreExecute() {
    super.onPreExecute();
    mProgressDialog.show();
}

@Override
protected void onProgressUpdate(Integer... progress) {
    super.onProgressUpdate(progress);
    mProgressDialog.setProgress(progress[0]);
}


@Override
protected String doInBackground(String... aurl) {
    try {

        URL url = new URL(aurl[0]);
        URLConnection connection = url.openConnection();

        connection.connect();
        int fileLength = connection.getContentLength();
        int tickSize = 2 * fileLength / 100;
        int nextProgress = tickSize;

        Log.d(

        "ANDRO_ASYNC", "Lenght of file: " + fileLength);

        InputStream input = new BufferedInputStream(url.openStream());

        String path = Environment.getExternalStorageDirectory()
                + "/Android/Data/"
                + getApplicationContext().getPackageName() + "/files";
        File file = new File(path);
        file.mkdirs();
        File outputFile = new File(file, "test1.pdf");

        OutputStream output = new FileOutputStream(outputFile);

        byte data[] = new byte[1024 * 1024];
        long total = 0;
        int count;
        while ((count = input.read(data)) != -1) {
            total += count;
            if (total >= nextProgress) {
                nextProgress = (int) ((total / tickSize + 1) * tickSize);
                this.publishProgress((int) (total * 100 / fileLength));
            }
            output.write(data, 0, count);
        }

        output.flush();
        output.close();
        input.close();
        mProgressDialog.dismiss();

    } catch (Exception e) {
    }
    return null;
}
protected void onProgressUpdate(String... progress) {
     Log.d("Downloading",progress[0]);

}

@Override
protected void onPostExecute(String unused) {

    File file = new File(Environment.getExternalStorageDirectory()
            + "/Android/Data/" + getApplicationContext().getPackageName()
            + "/files/test1.pdf");
    Intent testIntent = new Intent(Intent.ACTION_VIEW);
    testIntent.setType("application/pdf");
    Intent intent = new Intent();
    intent.setAction(Intent.ACTION_VIEW);
    Uri uri = Uri.fromFile(file);
    intent.setDataAndType(uri, "application/pdf");
    try {
        startActivity(intent);
    } catch (ActivityNotFoundException e) {
        Toast.makeText(SpinnerActivity .this,
                "No Application Available to View PDF", Toast.LENGTH_LONG).show();
    }
}
}
 }

Is this correct for what I am trying to accomplish?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T07:16:16+00:00Added an answer on June 3, 2026 at 7:16 am
    public class Example extends Activity{
    
    Spinner spDownloadFrom;
    private ArrayAdapter<CharSequence> spinnerArrayAdapter;
    String url[]= {"www.abc.com/download/a.txt",
            "www.abc.com/download/a.txt",
            "www.abc.com/download/a.txt",
            "www.abc.com/download/a.txt",
            "www.abc.com/download/a.txt",
            "www.abc.com/download/a.txt",
            "www.abc.com/download/a.txt"
            };
    String links[]= {"Server 1",
            "Server 2",
            "Server 3",
            "Server 4",
            "Server 5",
            "Server 6",
            "Server 7",
            };
    public void onCreate(Bundle savedInstanceState )
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    
        spDownloadFrom=(Spinner)findViewById(R.id.addQuotation_spinnerProduct);
    
        spinnerArrayAdapter = new ArrayAdapter<CharSequence>(this, android.R.layout.simple_spinner_item, links);
        spinnerArrayAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
        spDownloadFrom.setAdapter(spinnerArrayAdapter);
    
        spDownloadFrom.setOnItemSelectedListener(new SpinnerListener(spDownloadFrom));
    }
    public class SpinnerListener implements OnItemSelectedListener
    {
        Spinner sp;
        public SpinnerListener(View v)
        {
            sp=(Spinner)findViewById(v.getId());
        }
        @Override
        public void onItemSelected(AdapterView<?> arg0, View v, int arg2,
                long arg3) {
            //Call to download class
                new DownloadFile().equals(url[arg2].toString());
    
    
        }
        @Override
        public void onNothingSelected(AdapterView<?> arg0) {
            // TODO Auto-generated method stub
    
        }
    }
    class DownloadFile extends AsyncTask<String, String, String> { //put your download code
    
        @Override
        protected void onPreExecute() {
            super.onPreExecute();
    
        }
    
        @Override
        protected String doInBackground(String... aurl) {
    
    
    
            return null;
    
        }
        protected void onProgressUpdate(String... progress) {
             Log.d("Downloading",progress[0]);
    
        }
    
        @Override
        protected void onPostExecute(String unused) {
        }
    }
     }
    

    It is a sample class to meet your requirement. I did not run it so sorry if there is some mistake, but basic idea is here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In an embedded program I have a screen object that needs to manage a
I have a program that occasionally pops up on the screen and displays a
I have program that has a variable that should never change. However, somehow, it
Have a very large program where there is always a superview that just encompasses
I have a program that has a list of information that when tapped it
I have been working on a program that has 3 classes of which 2
I have a C++ program. It's quite simple - shows an image (splash screen)
I have a command line program, which outputs logging to the screen. I want
I have program, that must interact with a console program before my program can
I have program that runs fast enough. I want to see the number of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.