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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:35:29+00:00 2026-06-06T16:35:29+00:00

I’m trying to have the user pick an audio file and store the path

  • 0

I’m trying to have the user pick an audio file and store the path of that audio file. I’m doing so by using an ACTION_GET_CONTENT Intent so the user can pick an application to choose the file with. For some reason though, in the onActivityResult method, the Intent data is being returned as null, as is shown in the error message. Logcat error message and relevant code is given below. Any help would be greatly appreciated.

MAJOR EDIT:- This error only occurs when I press the back button or CANCEL ! Choosing a music file actually works fine. Sorry about that. Nonetheless, the error persists.

LogCat Error:-

06-26 16:36:25.238: E/AndroidRuntime(24759): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=0, data=null} to activity {com.packagename.appname.activityname}: java.lang.NullPointerException

Call to chooser activity placed in a method which is invoked in onCreate():-

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setAction(Intent.ACTION_PICK);
intent.setType("audio/*");
startActivityForResult(intent, audioreminder);

onActivityResult() method:-

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    SharedPreferences flags = this.getSharedPreferences(
            "screen_on_flags", MODE_WORLD_READABLE);
    SharedPreferences.Editor editor = flags.edit();
    String FilePath = data.getData().getPath();
    switch (requestCode) {
    case audioreminder: {
        if (resultCode == RESULT_OK) {
            editor.putString("audioreminderpath", FilePath);
            editor.commit();
        } else if (resultCode == RESULT_CANCELED){
            CheckBoxPreference other_audioreminder = (CheckBoxPreference) findPreference("other_audioreminder");
            other_audioreminder.setChecked(false);
            }
        break;
    }
    }
}
  • 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-06T16:35:30+00:00Added an answer on June 6, 2026 at 4:35 pm

    I used, this code..

    Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI);
    startActivityForResult(Intent.createChooser(intent, "Gallery"), audioreminder);
    

    Also, in onActivityResult() check Intent data either is null or not

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    
        if(data != null)
        {
        SharedPreferences flags = this.getSharedPreferences(
                "screen_on_flags", MODE_WORLD_READABLE);
        SharedPreferences.Editor editor = flags.edit();
        String FilePath = data.getData().getPath();
        switch (requestCode) {
        case audioreminder: {
            if (resultCode == RESULT_OK) {
                editor.putString("audioreminderpath", FilePath);
                editor.commit();
            } else if (resultCode == RESULT_CANCELED){
                CheckBoxPreference other_audioreminder = (CheckBoxPreference) findPreference("other_audioreminder");
                other_audioreminder.setChecked(false);
                }
            break;
        }
       }
      }
     else
     {
     Log.e("Intent data:" , "null")
     }
    }
    

    Try this and let me know what happen..

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

Sidebar

Related Questions

I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I am trying to render a haml file in a javascript response like so:
I am doing a simple coin flipping experiment for class that involves flipping a
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
We are using XSLT to translate a RIXML file to XML. Our RIXML contains

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.