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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:50:01+00:00 2026-06-13T23:50:01+00:00

I have application that will search for song on external storage and play it

  • 0

I have application that will search for song on external storage and play it by clicking a button. I use String path = getFullFilePath(getApplicationContext(), "FILENAME"); and it works fine if i type something like song.mp3…I tried to use EditText.getText().toString();
except “FILENAME” and it doesnt work. This is my code in OnCreate:

EditText et = (EditText) findViewById(R.id.et1);
            String string = et.getText().toString();
        sp = new SoundPool(5, AudioManager.STREAM_MUSIC, 0);
        String path = getFullFilePath(getApplicationContext(), string);
        mSoundId = sp.load(path, 1);

And LogCat says `11-07 14:26:39.909: W/SoundPool(12627): sample 1 not READY

BUT if I input et.setText("SongName"); it works fine.. I want to type something in edittext and then use it as filename!
Thanks
`

  • 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-13T23:50:02+00:00Added an answer on June 13, 2026 at 11:50 pm

    Do this in OnCreate:

    mEditText = (EditText) findViewById(R.id.et1); 
    mSoundPool = new SoundPool(5, AudioManager.STREAM_MUSIC, 0);
    mSoundPool.setOnLoadCompleteListener(new SoundPool.OnLoadCompleteListener() {
        public void onLoadComplete (SoundPool soundPool, int sampleId, int status) {
            mStreamId = soundPool.play(sampleId, 1, 1, 1, 0, 1f);
        }
    }
    

    Then in your onClick do:

    public void yourOnClickMethod(View view) { 
        if (mStreamId != 0) { 
            mSoundPool.stop(mStreamId); 
        } 
    
        String path = getFullFilePath(getApplicationContext(), EditText.getText().toString());
        mSoundId = mSoundPool.load(path, 1); 
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Situation:I have an ASP .NET application that will search through docs using Lucene. I
A little back story : I have small application that will use Word to
I have an application that will accept URLs from the built in web browser
I have this application that will recurse all folders in a given directory and
I have an application that will return JSON-P data, and I have been communicating
I have an application that will mail users attachments of text files. Receiving users
We have an application that will capture different images from users and make them
I have an application that requires resizing of a component that will be scaled
My group and I have an application that will work with protected content files
I have a web application that will be used on iPhones, and want to

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.