register as music player

后端 未结 4 975
星月不相逢
星月不相逢 2020-12-09 20:26

I\'d like to see my app in the list of player (\"continue action using...\") that pops up when I try to open an audio file (ie. from file browser or gmail attachment). Here

4条回答
  •  心在旅途
    2020-12-09 21:01

    This worked for me:

    AndroidManifest:

     
                
                
                
     
    

    MainActivity:

        @Override
        protected void onCreate(Bundle savedInstanceState)
        {  
    
        if (Intent.ACTION_VIEW.equals(getIntent().getAction()))
        {
            File file = new File(getIntent().getData().getPath());
    
           // do what you want with the file...       
        }
    

提交回复
热议问题