اذهب إلى المحتوى

لوحة المتصدرين

  1. E.Nourddine

    E.Nourddine

    الأعضاء


    • نقاط

      1

    • المساهمات

      1458


  2. Super

    Super

    الأعضاء


    • نقاط

      1

    • المساهمات

      10


  3. هبة محمد سعيد

    هبة محمد سعيد

    الأعضاء


    • نقاط

      1

    • المساهمات

      135


المحتوى الأكثر حصولًا على سمعة جيدة

المحتوى الأعلى تقييمًا في 05/08/16 في كل الموقع

  1. شكرا بارك الله فيك
    1 نقطة
  2. بالنسبة لـ pay pal فهو موقع خدمي أو كما يطلق عليه بنك الكتروني يمكنك دفع وسحب الأموال من خلاله واستقبال أرباحك من مواقع مثل مستقل أو خمسات مثلا بسحبها على pay pal، وقد دخلت مؤخرا خدمة سحب الأموال في مصر بعد انتظار طويل. عليك أن تقومين أولا بتسجيل حساب جديد على Pay pal باتباعك الخطوات اللازمة، ثم تختارين نوع الحساب الشخصي وتملئين البيانات المطلوبة ثم تضيفين البطاقة الائتمانية الخاصة بك، أفضل البطاقات المدعومة من Pay pal في مصر هي الفيزا كارد من البنك الأهلي أو بنك QNB ALahli،استطلعي من البنك عن إجراءات إنشاء الحساب واستخراج الفيزا وكيفية تفعيلها. يمكنك سحب أموالك في أي وقت لكن بعد خصم عمولة 5 دولار والمبلغ يحتاج من 7-5 أيام ليظهر على البطاقة، ويمكنك التأكد من رصيد البطاقة إما من ماكينة الصرف الآلي أو موقع الانترنت الخاص بالبنك التابعة له البطاقة. وبالتوفيق
    1 نقطة
  3. تمكنك برمجة تطبيقات اندرويد من مشاركة وإرسال محتوى معين مع تطبيق آخر، سواء أكان المحتوى نص، صور أو أي محتور آخر, ويُستعمل الكود التالي لارسال قطعة نص لتطبيق آخر: 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.
    1 نقطة
×
×
  • أضف...