android-pendingintent पर टैग किए गए जवाब

15
Android PendingIntent क्या है?
मैं Android के लिए एक नौसिखिया हूँ। मैंने एंड्रॉइड डॉक्यूमेंटेशन पढ़ा है लेकिन मुझे अभी भी कुछ और स्पष्टीकरण चाहिए। क्या कोई मुझे बता सकता है कि वास्तव में क्या PendingIntentहै?

9
एक गतिविधि के बाहर से कॉलिंग स्टार्ट एक्टिविटी ()?
मैं AlarmManagerएक आशय को ट्रिगर करने के लिए उपयोग कर रहा हूं जो एक संकेत प्रसारित करता है। निम्नलिखित मेरा कोड है: AlarmManager mgr = (AlarmManager) getSystemService(Context.ALARM_SERVICE); Intent i = new Intent(this, Wakeup.class); try { PendingIntent pi = PendingIntent.getBroadcast(this, 0, i, 0); Long elapsed += // sleep time; mgr.set(AlarmManager.RTC_WAKEUP, elapsed, …

6
अधिसूचना पुराने इरादे एक्स्ट्रा को पास करती है
मैं इस कोड के माध्यम से एक ब्रॉडकास्टर के अंदर एक अधिसूचना बना रहा हूं: String ns = Context.NOTIFICATION_SERVICE; NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns); int icon = R.drawable.ic_stat_notification; CharSequence tickerText = "New Notification"; long when = System.currentTimeMillis(); Notification notification = new Notification(icon, tickerText, when); notification.defaults |= Notification.DEFAULT_VIBRATE; long[] vibrate = …

8
आशय - यदि गतिविधि चल रही है, तो उसे सामने लाएं, अन्यथा एक नई शुरुआत करें (अधिसूचना से)
मेरे ऐप में नोटिफिकेशन हैं, जो स्पष्ट रूप से - बिना किसी झंडे के, हर बार एक नई गतिविधि शुरू करते हैं इसलिए मुझे एक-दूसरे के ऊपर चलने वाली कई समान गतिविधियाँ मिलती हैं, जो कि गलत है। मैं यह करना चाहता हूं कि लंबित इरादों में निर्दिष्ट गतिविधि को …

3
PendingIntent इंटेंट एक्स्ट्रा को नहीं भेजता है
मेरी MainActicity शुरुआत एक अतिरिक्त के RefreshServiceसाथ होती है ।IntentbooleanisNextWeek मेरे RefreshServiceएक बनाता है Notificationजो मेरे लिए शुरू होता है MainActivityउस पर जब उपयोगकर्ता क्लिक करता है। यह इस तरह दिखता है: Log.d("Refresh", "RefreshService got: isNextWeek: " + String.valueOf(isNextWeek)); Intent notificationIntent = new Intent(this, MainActivity.class); notificationIntent.putExtra(MainActivity.IS_NEXT_WEEK, isNextWeek); Log.d("Refresh", "RefreshService put …

5
PendingIntent पर "requestCode" का क्या उपयोग है?
पृष्ठभूमि: मैं अलार्म मैनजर के माध्यम से अलार्म के लिए PendingIntent का उपयोग कर रहा हूं। समस्या: पहले मैंने सोचा था कि पिछले वाले को रद्द करने के लिए, मुझे सटीक अनुरोध प्रदान करना होगा जो मैंने अलार्म शुरू करने से पहले उपयोग किया है। लेकिन तब मुझे पता चला …

13
PendingIntent पहली सूचना के लिए सही ढंग से काम करता है लेकिन बाकी के लिए गलत है
protected void displayNotification(String response) { Intent intent = new Intent(context, testActivity.class); PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, Intent.FLAG_ACTIVITY_NEW_TASK); Notification notification = new Notification(R.drawable.icon, "Upload Started", System.currentTimeMillis()); notification.setLatestEventInfo(context, "Upload", response, pendingIntent); nManager.notify((int)System.currentTimeMillis(), notification); } यह फ़ंक्शन कई बार कहा जाएगा। मैं प्रत्येक notificationके लिए गवाही देना चाहूंगा जब क्लिक किया जाए। …
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.