PDA

View Full Version : کد برای اشتراک گذاری برنامه



hno2005
دوشنبه 29 آذر 1395, 07:41 صبح
باسلام و خسته نباشید
در بعضی برنامه ها من دیدم یک گزینه اشتراک گذاری هستش که وقتنی میزنن خود برنامه از روشهای مختلف مثل تلگرام ، بلوتوث و ... میتونی ارسال کنید برای دیگران

ممنون میشم اگر کسی نمونه کد برای انجام اینکار دارد ارسال کند
با تشکر

spiderman200700
دوشنبه 29 آذر 1395, 12:10 عصر
سلام.
// Get current ApplicationInfo to find .apk path
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"));