নোটিফিকেশন থেকে ডিসপ্লে গ্লাসে একটি গ্লাস অ্যাক্টিভিটি শুরু করুন

প্রযোজ্য এক্সআর ডিভাইস
এই নির্দেশিকা আপনাকে এই ধরনের এক্সআর ডিভাইসগুলির জন্য অভিজ্ঞতা তৈরি করতে সাহায্য করে।
ডিসপ্লে গ্লাস

আপনি একটি ভিন্ন PendingIntent নির্দিষ্ট করতে পারেন, যা চশমার ডিসপ্লেতে কোনো নোটিফিকেশনে ট্যাপ করা হলে চালু হয়। এই PendingIntent setContentIntent ব্যবহার করে ফোনের জন্য সেট করা ডিফল্ট ইন্টেন্ট থেকে আলাদা। উদাহরণস্বরূপ, যখন ব্যবহারকারী ডিসপ্লে চশমার নোটিফিকেশনে ট্যাপ করেন, তখন ডিসপ্লে চশমাতে একটি নির্দিষ্ট অ্যাক্টিভিটি চালু হয়।

চশমার জন্য নির্দিষ্ট আচরণ যোগ করতে, ProjectedExtender ব্যবহার করুন। এই API-টি আপনাকে ফোনে নোটিফিকেশনের প্রদর্শনে কোনো প্রভাব না ফেলেই চশমার নোটিফিকেশন আচরণ কাস্টমাইজ করার সুযোগ দেয়।

কোটলিন

// Intent to fire when tapped on the phone
val phoneIntent = Intent(this, MyPhoneActivity::class.java)
val phonePendingIntent = PendingIntent.getActivity(
    this, 0, phoneIntent, PendingIntent.FLAG_IMMUTABLE
)

// Intent to fire when tapped on the glasses display
val glassesIntent = Intent(this, MyGlassesActivity::class.java)
val glassesPendingIntent = PendingIntent.getActivity(
    this, 1, glassesIntent, PendingIntent.FLAG_IMMUTABLE
)

// Create the base notification
val builder = NotificationCompat.Builder(this, CHANNEL_ID).apply {
    setSmallIcon(R.drawable.ic_notification)
    setContentTitle("Navigation in Progress")
    setContentText("Tap to see details")
    // Default intent for phone
    setContentIntent(phonePendingIntent)

    // Create and apply the glasses extender
    val projectedExtender = ProjectedExtender().setContentIntent(glassesPendingIntent)

    extend(projectedExtender)
}

// Issue the notification
notificationManager.notify(NOTIFICATION_ID, builder.build())

জাভা

// Intent to fire when tapped on the phone
Intent phoneIntent = new Intent(this, MyPhoneActivity.class);
PendingIntent phonePendingIntent =
    PendingIntent.getActivity(this, 0, phoneIntent, PendingIntent.FLAG_IMMUTABLE);

// Intent to fire when tapped on the glasses display
Intent glassesIntent = new Intent(this, MyGlassesActivity.class);
PendingIntent glassesPendingIntent =
    PendingIntent.getActivity(this, 1, glassesIntent, PendingIntent.FLAG_IMMUTABLE);

// Create the base notification
NotificationCompat.Builder builder = new NotificationCompat.Builder(this, CHANNEL_ID)
    .setSmallIcon(R.drawable.ic_notification)
    .setContentTitle("New Update")
    .setContentText("Something important happened.")
    // Default intent for phone
    .setContentIntent(phonePendingIntent);

// Create and apply the Glasses extender
ProjectedExtender projectedExtender = new ProjectedExtender()
    // glasses-specific intent
    .setContentIntent(glassesPendingIntent);
builder.extend(projectedExtender);

// Issue the notification
notificationManager.notify(NOTIFICATION_ID, builder.build());