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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:23:58+00:00 2026-05-27T21:23:58+00:00

I am creating an mp3tag editor and want it to get started via the

  • 0

I am creating an mp3tag editor and want it to get started via the android-buildin-filebrowser “myfiles” (com.sec.android.app.myfiles/com.sec.android.app.myfiles.MainActivity) .

When i select a mp3 file i get an activity chooser that offers me two programs to execute the file.
Unfortunately my own program is not among the offered choises.

However if i use the external android-filebrowser OI File Manager it offers me a chooser
which includes my own app.

My question: how do i have to register my actrivity in the manifest so that “myfiles” can launch it?

My app is registered like this:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="media.mp3"
        android:versionCode="1"
        android:versionName="1.0" >

        <uses-sdk android:minSdkVersion="7" />

        <application
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name" >
            <activity
                android:label="@string/app_name"
                android:name=".Mp3TagEditorActivity" >
                <intent-filter >
                    <action android:name="android.intent.action.MAIN" />

                    <category android:name="android.intent.category.LAUNCHER" />
                    <category android:name="android.intent.category.EDIT" />
                    <category android:name="android.intent.category.VIEW" />
                    <data android:mimeType="audio/mpeg"  />

                </intent-filter>
            </activity>
        </application>
    </manifest>
  • 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-05-27T21:23:59+00:00Added an answer on May 27, 2026 at 9:23 pm

    I am creating an mp3tag editor and want it to get started via the android-buildin-filebrowser “myfiles”.

    There is no “android-buildin-filebrowser ‘myfiles'” in the Android OS. You may be thinking of a file browser that ships on some specific device.

    My question: how do i have to register my actrivity in the manifest so that “myfiles” can launch it?

    To answer that definitively, you would have to contact the author of “myfiles”.

    My app is registered like this:

    Your <intent-filter> is rather wrong.

    First, EDIT and VIEW are actions, not categories.

    Second, the only way it will match on your <intent-filter> is if the LAUNCHER category is included, which is very unlikely for the EDIT or VIEW actions.

    If you want this activity to both be in the home screen’s launcher and respond to VIEW or EDIT actions, you would need something like this:

            <activity
                android:label="@string/app_name"
                android:name=".Mp3TagEditorActivity" >
                <intent-filter >
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
                <intent-filter >
                    <action android:name="android.intent.action.EDIT" />
                    <action android:name="android.intent.action.VIEW" />
                    <data android:mimeType="audio/mpeg"  />
                </intent-filter>
            </activity>
    

    Two separate <intent-filter> elements are a logical OR — any Intent that matches the first or the second will match this activity.

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

Sidebar

Related Questions

Creating an a app, where I store bunch of photos in the drawable folder,
Creating a simple RPG game, first time using XNA. Trying to get my character
Creating a Blackberry app. Just a beginner, I have searched but couldn't find a
Creating a searchable contacts kind of app. Below is my code public class EmployeeList
Creating my WordPress author.php template page and ran into a little roadblock. I want
Creating a simple TCP server based on examples but still do not get how
Creating a link to an issue in Mantis is done via the hash symbol
Creating a relatively simple data entry form, and just want to separate certain sections
creating a very simple scheduling app I am asking the user to tell me
Creating a simple app that calculates the speed your going and displays it in

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.