I am wanting to access the titlebar that was setup in my tab activity from an activity that is within the tabhost. What do I use to call the parent? So far, I have this, but it does not work:
View v = (View) getParent().getTitle();
TextView title = (TextView)v.findViewById(R.id.TitleLabel);
title.setText("Custom Title Text Here");
All I had to do was reference the TextView within the parentActivity:
And of course, set the TextView to public static in the parent activity.