Android add my app to “Share” button in gallery

后端 未结 2 2008
走了就别回头了
走了就别回头了 2021-02-05 22:28

I succeed to add my app in the \"share\" button in the Android gallery, so if I click on it, my app will start. Can I choose which activity of my app to start? Now it starts th

2条回答
  •  遥遥无期
    2021-02-05 23:05

    If you had two activities in your manifest file, say Main and MediaShare then it would look something like this:

    
        
            
            
        
    
    
        
            
            
        
    
    

    The android.intent.action.SEND action and android:mimeType="image/*" data should go with the activity you want to start when you share an image.

    See the page on Receiving Content from Other Apps for more details.

提交回复
热议问题