Returning an Image to whatsapp

前端 未结 2 1542
温柔的废话
温柔的废话 2020-12-06 13:58

I\'ve been trying to build an app that shows up as an optional image source when a user tries to share an image using whatsapp. So far I have managed to get my app to show u

2条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-06 15:02

    Followig is working for me:

        
            
                
    
                
                
    
                
                
                
            
    
    
    
            Uri imageUri = (Uri) getIntent().getParcelableExtra(Intent.EXTRA_STREAM);
            if (imageUri != null) {
    

提交回复
热议问题