We have already answered this question in a previous post... please don't
post multiple versions of the same question.  Also, no one is going to write
the code for you...  We all monitor this group in our spare time.  You will
get concepts, perhaps a few code snippets, but I wouldn't expect much more
than that.

And that is what you have been given in your other post.


----------------------------------------------------------------------
There are only 10 types of people in the world...
Those who know binary and those who don't.
----------------------------------------------------------------------


On Sat, Jul 10, 2010 at 3:19 PM, Raul Martinez <[email protected]> wrote:

> can someone help i have this code:
>
> package com.main.Reference;
>
>
> import android.app.ListActivity;
> import android.os.Bundle;
> import android.widget.ArrayAdapter;
>
>
> public class Reference extends ListActivity {
>     /** Called when the activity is first created. */
>     @Override
>     public void onCreate(Bundle savedInstanceState) {
>     super.onCreate(savedInstanceState);
>
>     String[] office = getResources().getStringArray(R.array.Office_array);
>     setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item,
> office));
>
>       }
>    }
>
> and i want to be able to click on one of the items on the list and for it
> to go to another set of list
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Beginners" group.
>
> NEW! Try asking and tagging your question on Stack Overflow at
> http://stackoverflow.com/questions/tagged/android
>
> To unsubscribe from this group, send email to
> [email protected]<android-beginners%[email protected]>
> For more options, visit this group at
> http://groups.google.com/group/android-beginners?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Reply via email to