Passing a Bundle on startActivity()? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:24:25Z http://stackoverflow.com/feeds/question/768969 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/768969/passing-a-bundle-on-startactivity 0 Passing a Bundle on startActivity()? gsmd 2009-04-20T16:13:49Z 2009-05-04T09:23:57Z <p>What's the correct way to pass a bundle to the activity that is being launched from the current one? Shared properties? TIA.</p> http://stackoverflow.com/questions/768969/passing-a-bundle-on-startactivity/769020#769020 1 Answer by Dustin for Passing a Bundle on startActivity()? Dustin 2009-04-20T16:25:29Z 2009-04-20T16:25:29Z <p>You can use the Bundle from the Intent:</p> <pre><code>Bundle extras = myIntent.getExtras(); extras.put*(info); </code></pre> <p>Or an entire bundle:</p> <pre><code>myIntent.putExtras(myBundle); </code></pre> <p>Is this what you're looking for?</p> http://stackoverflow.com/questions/768969/passing-a-bundle-on-startactivity/819427#819427 4 Answer by fiXedd for Passing a Bundle on startActivity()? fiXedd 2009-05-04T09:23:57Z 2009-05-04T09:23:57Z <p>You have a few options:</p> <p>1) Use the <a href="http://developer.android.com/reference/android/os/Bundle.html" rel="nofollow">Bundle</a> from the <a href="http://developer.android.com/reference/android/content/Intent.html" rel="nofollow">Intent</a>:</p> <pre><code>Intent mIntent = new Intent(this, Example.class); Bundle extras = mIntent.getExtras(); extras.putString(key, value); </code></pre> <p>2) Create a new Bundle</p> <pre><code>Intent mIntent = new Intent(this, Example.class); Bundle mBundle = new Bundle(); mBundle.extras.putString(key, value); mIntent.putExtras(mBundle); </code></pre> <p>3) Use the <a href="http://developer.android.com/reference/android/content/Intent.html#putExtra%28java.lang.String,%20java.lang.String%5B%5D%29" rel="nofollow">putExtra()</a> shortcut method of the Intent</p> <pre><code>Intent mIntent = new Intent(this, Example.class); mIntent.putExtra(key, value); </code></pre> <p><br/> Then, in the launched Activity, you would read them via:</p> <pre><code>String value = getIntent().getExtras().getString(key) </code></pre> <p><strong><em>NOTE:</strong> Bundles have "get" and "put" methods for all the primitive types, Parcelables, and Serializables. I just used Strings for demonstrational purposes.</em></p>