Re: [android-developers] Re: Creation of Activities from Tabhost

2010-05-16 Thread Mark Murphy
Patrick wrote: > I want each tab activity to register for events on creation. Otherwise > it could happen that a tab is not up2date because it missed the event > simply because the instance didn't register itself. And the second > point is that the selection of each tab the first time works smoothe

[android-developers] Re: Creation of Activities from Tabhost

2010-05-16 Thread Patrick
I want each tab activity to register for events on creation. Otherwise it could happen that a tab is not up2date because it missed the event simply because the instance didn't register itself. And the second point is that the selection of each tab the first time works smoother. Therefore I thought,

[android-developers] Re: Creation of Activities from Tabhost

2010-05-14 Thread skink
On May 14, 5:36 pm, Patrick wrote: > Hallo! > I have a TabActivity. Within this activity (in the onCreate method) I > create a TabHost and a TabSpec and do a > tabSpectSearch.setContent(intenSearch); The Indent is created using > intentSearch = new Intent().setClass(this, MyActivity.class); > >