As a newcomer to Android, you absolutely must read
http://developer.android.com/guide/topics/fundamentals.html. You must
not only read it, but study it thoroughly. Thoroughly enough that you
can answer, for example, reading questions such as the following:

1) What are the four "application components" out of which all Android
applications are built?
2) How does Android guarantee that application processes are isolated
from each other?
3) How do different application components of a single application
share data with each other? Name ALL the ways Android supports.
4) How do completely independent applications share data with each
other?
5) Can a Service and an Activity in the same application share a
thread?
6) What is the difference between a Service and a background/worker
thread? Or a Broadcast Receiver?
7) Which class is used to manage interprocess communication between an
Application and a ContentProvider?
8) Which application components are 'activated' by an Intent?
9) Some application components run quickly to completion, and then are
deactivated. Others must be explicity deactivated. Which are which?
10) How does an Activity/Service decode the data in an Intent?
11) What are the differences between the three activity states:
active=running, paused, and stopped? In which of this is the activity
visible, in which does the user have input focus?

If I understand your question correctly, 3, 4 and 7 are most directly
relevant to your question. But in order to understand the context for
the answers, you really do need to read all of
http://developer.android.com/guide/topics/fundamentals.html well
enough to answer all the above questions and more.

Good luck with your reading;)

On Aug 26, 11:26 am, crajesh <crajesh2...@gmail.com> wrote:
> Hi all,
>
>    i am new in android how read the data from server using intent
>
> Thanks
> Remo

-- 
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, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to