First of all... Wish you all a Very Happy New Year.
Here is the problem I am facing when developing an android application-
I have 2 tabs i.e. Tab1 and Tab2, Tab1 is associated with an activity and Tab2 is associated with an Activity Group. I have managed to replace views of the Activity Group when on the same tab i.e. Tab2. and this works fine
But when I am trying to change the View of the Activity Group from the activity of Tab1, my screen freezes. I am doing this on a component's On-Click action of the activity in Tab1.
Here is the code I am using to do so...
public void onClick(View v) {
TabHost tabHost = (TabHost) v.getParent().getParent().getParent().getParent().getParent().getParent().getParent().getParent().getParent().getParent().getParent().getParent();
tabHost.setCurrentTab(1);
ArrayList<View> historyArray = MapRelatedActivityGroup.mapRelatedActivityGroup.getHistory();
Iterator<View> historyArrayIterator = historyArray.iterator();
while(historyArrayIterator.hasNext()){
View view = historyArrayIterator.next();
if(view.getContext() instanceof MapPageActivity){
MapRelatedActivityGroup.mapRelatedActivityGroup.replaceView(view);
break;
}
}
If I comment the code of replacing the View from above code... it works fine i.e. the second tab is selected, the activity Group is loaded, I am able to play with the views in Activity Group. But the only problem is it shows me the last view loaded in the Activity Group. which is what I DON'T want. I want to load a specific View which I am searching from the History and replacing it.
Please help... Its really urgent and I am stuck badly..
Raj