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

  • SEARCH
  • Home
  • 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 8870317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T17:41:36+00:00 2026-06-14T17:41:36+00:00

If possible, how can I delete a playlist from MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI , programatically?

  • 0

If possible, how can I delete a playlist from MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, programatically?

  • 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-14T17:41:37+00:00Added an answer on June 14, 2026 at 5:41 pm

    I use the following code to delete a specific playlist. All it needs is the playlist id of course

    private void deletePlaylist(String selectedplaylist) 
    {
    // // Log.i(TAG, "deletePlaylist");
    String playlistid = getPlayListId(selectedplaylist);
    ContentResolver resolver = this.getContentResolver();
    String where = MediaStore.Audio.Playlists._ID + "=?";
    String[] whereVal = {playlistid}; 
    resolver.delete(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, where, whereVal);
    Toast toast = Toast.makeText(this,selectedplaylist + " Deleted", Toast.LENGTH_SHORT);
        toast.show();   
    return ;        
    }
    

    I have created a small app where you can see this in action.
    https://play.google.com/store/apps/details?id=rapc.flyingdutchman.com&feature=nav_result#?t=W251bGwsMSwyLDNd

    As you can see, it first gets the playlistid. all i have at this point is the playlist name.
    below my code to get the id.

        public String getPlayListId(String playlist )
    
        {
    
        //  read this record and get playlistid
    
        Uri newuri =MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI;
    
        final String playlistid = MediaStore.Audio.Playlists._ID;
    
        final String playlistname = MediaStore.Audio.Playlists.NAME;
    
        String where = MediaStore.Audio.Playlists.NAME + "=?";
    
        String[] whereVal = {playlist}; 
    
        String[] projection = {playlistid, playlistname};
    
        ContentResolver resolver = getContentResolver();
    
        Cursor record = resolver.query(newuri , projection, where, whereVal, null);
    
        int recordcount = record.getCount();
    
        String foundplaylistid = "";
    
        if (recordcount > 0)
    
        {
        record.moveToFirst();
    
        int idColumn = record.getColumnIndex(playlistid);
    
        foundplaylistid = record.getString(idColumn);
    
        record.close();
        }
    
        return foundplaylistid;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: SQL Delete: can't specify target table for update in FROM clause I
Possible Duplicate: SQL Delete: can't specify target table for update in FROM clause I'm
Possible Duplicate: How to remove an XmlNode from XmlNodeList Hi, How can i delete
Possible Duplicate: C++ delete - It deletes my objects but I can still access
Possible Duplicate: Can I run from command line program created by Eclipse? I am
Possible Duplicate: Can we delete an SMS in Android before it reaches the inbox?
How can I delete a build from the Jenkins GUI? I know that I
Possible Duplicate: How can I delete a file pointed to by a FILE* in
Possible Duplicate: PHP: Is there a command that can delete the contents of a
Possible Duplicate: Deleting files by type in Python on Windows How can I delete

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.