[android-beginners] How to make a child activity?

2009-10-13 Thread vchris80
Hi all, I have a simple question: how I make an activity that is child of another? I use this code to start an activity from another: Intent startIntent = new Intent(MyMainActivity.this, ChildActivity.class); startActivity(startIntent); but on the onCreate method of ChildActivity, if I watch

[android-beginners] Re: How to make a child activity?

2009-10-14 Thread vchris80
activities, for example a TabActivity. What you might want to look into, is this introduction on opening screens (activities): http://developer.android.com/guide/appendix/faq/commontasks.html#open... Cheers, James On Tue, Oct 13, 2009 at 7:25 AM, vchris80 vuc...@gmail.com wrote: Hi all

[android-beginners] Re: How to make a child activity?

2009-10-15 Thread vchris80
another? You can look at the TabActivity source for a pretty clean example: http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;... http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;... Cheers, James On Wed, Oct 14, 2009 at 1:31 AM, vchris80 vuc...@gmail.com

[android-beginners] Re: How to make a child activity?

2009-10-16 Thread vchris80
and a daddy activity love each other very much enough to get married first. On Oct 15, 12:50 am, vchris80 vuc...@gmail.com wrote: hi james, thanx for reply. I try to explain what I want to achieve. It is actually very simple, but maybe I am walking on the wrong path since I think