Re: [android-developers] Re: list - need suggestion

2010-01-27 Thread android beginner
Yes. Because of touch mode, I didn't get the focus. Since my hardware doesnt have the the touch screen, it should not be an issue :) On Thu, Jan 28, 2010 at 3:23 PM, android beginner < android.beginne...@gmail.com> wrote: > Yea, went through the document and got good understanding of activities &

Re: [android-developers] Re: list - need suggestion

2010-01-27 Thread android beginner
Yea, went through the document and got good understanding of activities & tasks. I observed one issue though (Not sure if its an issue, maybe I need to call some other functions). In my first list A, I selected one item using Keys. This leads to create another list Activity B. I just browsed the

[android-developers] Re: list - need suggestion

2010-01-27 Thread theSmith
On Jan 27, 7:03 pm, android beginner wrote: > Hi, > The basic list that I want to view is working. > > In my first list activity(ListDemoActivity), I choosed some element, which > triggers another list A activity. If I go back (on pressing "BACK" key), the > state of ListDemoActivity screen is p

Re: [android-developers] Re: list - need suggestion

2010-01-27 Thread Jason Proctor
first off, use String.equals() to compare the contents of strings, not ==. the == operator checks for object reference equality. this isn't what you want, unless you use intern() throughout, which i wouldn't recommend. Hi, The basic list that I want to view is working. In my first list act

Re: [android-developers] Re: list - need suggestion

2010-01-27 Thread android beginner
Hi, The basic list that I want to view is working. In my first list activity(ListDemoActivity), I choosed some element, which triggers another list A activity. If I go back (on pressing "BACK" key), the state of ListDemoActivity screen is preserved. Now If I select the same element again, I expect

[android-developers] Re: list - need suggestion

2010-01-25 Thread theSmith
On Jan 25, 11:48 pm, android beginner wrote: > so, each sub-lists should be created as list activity. On selecting any > item, should call that particular list activity. Is my understanding > correct? Yes > Also, how to store parent list in the stack? so that on pressing "escape" > key, I can n

Re: [android-developers] Re: list - need suggestion

2010-01-25 Thread android beginner
so, each sub-lists should be created as list activity. On selecting any item, should call that particular list activity. Is my understanding correct? Also, how to store parent list in the stack? so that on pressing "escape" key, I can navigate backwards. Thanks On Tue, Jan 26, 2010 at 9:11 AM, s