Terminal emulation for mainframes.
This is how strings are being added to Extras: Intent i = new Intent(); i.putExtra("Name", edt_name.getText()); i.…
android string android-intent null extrasHi i'm launching activity from preferences screen. Activity is shared among three preferences. I wonder if i can set extras …
android android-intent intentfilter extrasI am trying to pass a structure of arraylist to an intent as follows, In the calling function i am …
android android-intent bundle extrasI'm having a problem with alarmManager and the pending intent with extras that will go along with it. If I …
android android-intent alarmmanager android-pendingintent extrasA few days ago I was struggling to find a way to use custom intents for my alarms. Although I …
android android-intent extrasThis questions somehow relates to the question when I was looking to get the extras back in startActivityForResult but now …
android android-intent extrasSolved while writing this question, but posting in case it helps anyone: I'm setting multiple alarms like this, with different …
android android-pendingintent extras alarmsI am writing an android Junit test for a class that relies on extras passed to it through an Intent. …
android junit android-intent extrasI have this code: Intent intent = new Intent(); intent.setAction(Intent.ACTION_PICK); intent.setData(ContactsContract.Contacts.CONTENT_URI); intent.…
android android-intent extrasI just can't get what's wrong here. Activity.java: ... Intent intent = new Intent(Activity.this, Service.class); intent.putExtra(Service.…
android service android-intent extras