hhayder16 نشر 5 مايو 2016 أرسل تقرير نشر 5 مايو 2016 مرحباً، لقد قمت بانشاء تطبيق خاص بموقعي باستخدام برنامج اندرويد ستديو (وطبعاً بمساعدة الشروحات في الانترنت) لكن تعثرت بوصولي الى اضافة كودي المشاركة و الارسال ! انا اعمل على القالب الجاهز Navigation Drawer Activity وقد اكملت اعداداته بقي فقط اكواد تفعيل Share & Send كما هو مشار بالصورة المرفقة اتمنى من المحترفين مساعدتي وشكراً اقتباس
1 E.Nourddine نشر 7 مايو 2016 أرسل تقرير نشر 7 مايو 2016 تمكنك برمجة تطبيقات اندرويد من مشاركة وإرسال محتوى معين مع تطبيق آخر، سواء أكان المحتوى نص، صور أو أي محتور آخر, ويُستعمل الكود التالي لارسال قطعة نص لتطبيق آخر: Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send."); sendIntent.setType("text/plain"); startActivity(sendIntent); لإرسال محتور Binary (صورة، فيديو...): Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_SEND); shareIntent.putExtra(Intent.EXTRA_STREAM, uriToImage); shareIntent.setType("image/jpeg"); startActivity(Intent.createChooser(shareIntent, getResources().getText(R.string.send_to))); في حال كنت تريد إرسال عدة مكونات دفعة واحدة: ArrayList<Uri> imageUris = new ArrayList<Uri>(); imageUris.add(imageUri1); // Add your image URIs here imageUris.add(imageUri2); Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_SEND_MULTIPLE); shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, imageUris); shareIntent.setType("image/*"); startActivity(Intent.createChooser(shareIntent, "Share images to..")); بالنسبة لاستقبال محتوى مبعوث من تطبيقات أخرى، ماعليك سوى : تغيير كود Manifest: <activity android:name=".ui.MyActivity" > <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="image/*" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="text/plain" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.SEND_MULTIPLE" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="image/*" /> </intent-filter> </activity> استقبال المحتوى المُرسَل: void onCreate (Bundle savedInstanceState) { ... // Get intent, action and MIME type Intent intent = getIntent(); String action = intent.getAction(); String type = intent.getType(); if (Intent.ACTION_SEND.equals(action) && type != null) { if ("text/plain".equals(type)) { handleSendText(intent); // Handle text being sent } else if (type.startsWith("image/")) { handleSendImage(intent); // Handle single image being sent } } else if (Intent.ACTION_SEND_MULTIPLE.equals(action) && type != null) { if (type.startsWith("image/")) { handleSendMultipleImages(intent); // Handle multiple images being sent } } else { // Handle other intents, such as being started from the home screen } ... } void handleSendText(Intent intent) { String sharedText = intent.getStringExtra(Intent.EXTRA_TEXT); if (sharedText != null) { // Update UI to reflect text being shared } } void handleSendImage(Intent intent) { Uri imageUri = (Uri) intent.getParcelableExtra(Intent.EXTRA_STREAM); if (imageUri != null) { // Update UI to reflect image being shared } } void handleSendMultipleImages(Intent intent) { ArrayList<Uri> imageUris = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM); if (imageUris != null) { // Update UI to reflect multiple images being shared } } أيضا يمكن مشاركة المحتوى من خلال : Sharing Data و Sharing Files with NFC. 2 اقتباس
0 hhayder16 نشر 8 مايو 2016 الكاتب أرسل تقرير نشر 8 مايو 2016 شكراً لك عزيزي E.Nourddine تعبتك معي! اقتباس
السؤال
hhayder16
مرحباً،
لقد قمت بانشاء تطبيق خاص بموقعي باستخدام برنامج اندرويد ستديو (وطبعاً بمساعدة الشروحات في الانترنت)
لكن تعثرت بوصولي الى اضافة كودي المشاركة و الارسال !
انا اعمل على القالب الجاهز Navigation Drawer Activity
وقد اكملت اعداداته بقي فقط اكواد تفعيل Share & Send
كما هو مشار بالصورة المرفقة
اتمنى من المحترفين مساعدتي
وشكراً
2 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.