2015-12-08 1 views
2

Привет Я пытаюсь сделать кнопку, которая делит мое приложение с другими средствами, такими как Bluetooth & ShareIt. Я пробовал этоПоделиться APK через опцию share в android

public void onClick(View view) { 
    Intent sendIntent = new Intent(); 
    sendIntent.setAction(Intent.ACTION_SEND); 
    sendIntent.putExtra(Intent.EXTRA_TEXT, "Share this application"); 
    sendIntent.setType("text/plain"); 
    startActivity(sendIntent); 
} 

Это работает для обмена некоторыми текстами. Теперь, как я могу поделиться своим файлом apk или приложением через это ???

ответ

12
private void shareApplication() { 
     ApplicationInfo app = getApplicationContext().getApplicationInfo(); 
     String filePath = app.sourceDir; 

     Intent intent = new Intent(Intent.ACTION_SEND); 

     // MIME of .apk is "application/vnd.android.package-archive". 
     // but Bluetooth does not accept this. Let's use "*/*" instead. 
     intent.setType("*/*"); 


     // Append file and send Intent 
     intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(filePath))); 
     startActivity(Intent.createChooser(intent, "Share app via")); 
    } 
+0

Отлично работает. –

+0

Благодаря @AliEsmaeili это то, что я ищу. –