To share the app or any thing in android you can easily use this code
لمشاركة اي بيانات في الاندرويد يتم ستخدام الكود:
//create the send intent Intent shareIntent =
new Intent(android.content.Intent.ACTION_SEND);
//set the type shareIntent.setType("text/plain");
//add a subject shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
"Insert Subject Here");
//build the body of the message to be shared String shareMessage = "Insert message body here.";
//add the message shareIntent.putExtra(android.content.Intent.EXTRA_TEXT,
shareMessage);
//start the chooser for sharing startActivity(Intent.createChooser(shareIntent,
"Insert share chooser title here"));
ليست هناك تعليقات:
إرسال تعليق