Re: [android-developers] Re: Context and Intent

2010-10-28 Thread zeeshan mirza
I mixed content with context. Sorry my mistake. Here is content provider documentation. http://developer.android.com/guide/topics/providers/content-providers.html -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

Re: [android-developers] Re: Context and Intent

2010-10-28 Thread dipti seni
* www.ksrista.com search your life partner* -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

Re: [android-developers] Re: Context and Intent

2010-10-28 Thread dipti seni
* www.ksrista.com search your life partner* -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegrou

Re: [android-developers] Re: Context and Intent

2010-10-28 Thread dipti seni
* www.ksrista.com search your life partner * -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group

Re: [android-developers] Re: Context and Intent

2010-10-28 Thread TreKing
On Thu, Oct 28, 2010 at 5:02 PM, zeeshan mirza < zeeshan.nabeel.mi...@gmail.com> wrote: > What i understand is that context is just like a database which is used to > pass data between applications > What in the world gave you the idea that a Context is just like a database? > and intent is use

Re: [android-developers] Re: Context and Intent

2010-10-28 Thread zeeshan mirza
Thanks alot Mark for your reply :) I have gone through some papers on context and intent. Please let me know if i am wrong. What i understand is that context is just like a database which is used to pass data between applications and intent is used to activate services and activities. This is the m

[android-developers] Re: Context and Intent

2010-10-28 Thread Mark
This is an example of both Context and Intent, perhaps someone else can explain the meaning but I suggest you don't bother and simply write some code. Intent i = new Intent(this, GameActivity.class); startActivityForResult(i, 0); Heres the reference: http://developer.android.com/