2014-09-10 62 views

回答

0

試試這個:

public void shareImage(String filepath, String appPackage) { 

    Intent intent = new Intent(Intent.ACTION_SEND); 
    intent.setType("image/*"); 
    intent.setPackage(appPackage); 

    intent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + filepath)); 
    try { 
     startActivity(intent); 
    } catch (android.content.ActivityNotFoundException ex) { 
     ex.printStackTrace(); 
    } 
} 

的appPackage的WhatsApp的例如是:那你試過到目前爲止 「com.whatsapp」

+0

正確答案? – Kewitschka 2014-09-16 11:40:46