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 8809467
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:53:00+00:00 2026-06-14T02:53:00+00:00

I am newbie for android and trying to include a file uploader in android

  • 0

I am newbie for android and trying to include a file uploader in android application. But I can’t find in any relevant control for that. I want to place a control like this Image

What should I do for achieving this task?

  • 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-14T02:53:01+00:00Added an answer on June 14, 2026 at 2:53 am

    There is no inbuilt control for uploading a file in Android. In java we are having a file-chooser to browse the file. in android you have to do this to select a file either from camera or gallery.

    final String[] items = new String[] { “Take picture”,
    “Choose from Gallery” };
    ArrayAdapter adapter = new ArrayAdapter(this,
    android.R.layout.select_dialog_item, items);
    AlertDialog.Builder builder = new AlertDialog.Builder(this);

        builder.setTitle("Select Image");
        builder.setIcon(R.drawable.copy_selected);
        builder.setAdapter(adapter, new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int item) { // pick from
                                                                    // camera
                if (item == 0) {
    
                    imageFilepath = Environment.getExternalStorageDirectory()
                            .getAbsolutePath() + "/tmp_img.jpeg";
    
                    Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    
                    mImageCaptureUri = Uri.fromFile(new File(Environment
                            .getExternalStorageDirectory().getAbsolutePath(),
                            "/tmp_img.jpeg"));
    
                    intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT,
                            mImageCaptureUri);
    
                    try {
                        intent.putExtra("return-data", true);
    
                        startActivityForResult(intent, PICK_FROM_CAMERA);
                    } catch (ActivityNotFoundException e) {
                        e.printStackTrace();
                    }
                } else { // pick from file
                    Intent intent = new Intent();
    
                    intent.setType("image/*");
                    intent.setAction(Intent.ACTION_GET_CONTENT);
    
                    startActivityForResult(Intent.createChooser(intent,
                            "Complete action using"), PICK_FROM_FILE);
                }
            }
        });
    
        final AlertDialog dialog = builder.create();
    

    Now on onActivityResult you need to handle this according to your need.
    Thanks

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

Sidebar

Related Questions

I am a newbie to Android programming. I want two radio buttons that when
I'm an Android newbie and I'm trying to update my (working!) code that uses
I'm a newbie to android and i'm trying to make an app that respond
I'm a newbie android developer, I'm trying to develop an application; a background service
Well, i am an Android newbie. I am trying to write an application which
Still an Android newbie , but hopefully someone can point me in the right
I am a newbie to android development and am trying to develop a simple
I'm still a newbie in Android and I'm trying to work my way around
Android newbie here. I'm using this tutorial to show some rows that I fetch
i am newbie for Android Development. i don't have any idea for creating Scientific

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.