I have a custom title bar set on my TabActivity. The custom title bar contains a TextView and an ImageView in it. The tabHost has multiple tabs.

What I want to do is to access the ImageView resource in the tabs.

I am accessing the TextView from custom title bar in the main Tab activity (that extends TabActivity) and it is working fine. Following is the code which is working fine in main activity:

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.myactivity);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mycustomtitle);
TextView tv = (TextView) findViewById(R.id.viewTitleId);

Now I want to access the ImageView in my tabs (which are added in tabHost). If I set following code in tab:

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

It gives following error:

You cannot combine custom titles with other title features

And if i directly set following in the tab code:

getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mycustomtitle);
ImageView image = (ImageView) findViewById(R.id.imageTitleId);

The image remains null.

mycustomtitle.xml has following two elements:

<TextView 
     android:layout_width="0dp"
     android:layout_height="wrap_content" 
     android:layout_weight="0.80"
     android:id="@+id/viewTitleId"
     android:textColor="@color/titleBarTextColor"
     android:gravity="center_vertical"
     android:text="@string/viewText"
     android:textSize="18px"
     android:paddingLeft="45px"
     />

<ImageView 
    android:layout_height="wrap_content" 
    android:layout_width="0dp" 
            android:layout_weight="0.20"
    android:src="@drawable/btn_save" 
    android:id="@+id/imageTitleId"
    >
</ImageView>

Please give me some idea how can I access the Custom title's ImageView in the tabs ?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 3 down vote accepted

You can access the TextView and ImageView by declaring them public static in the TabActivity. Then, in the Sub-Activity you obviously access the public static TextView and ImageView like,

Main_Tab_Activity.textView.setText("my_text_view");
link|improve this answer
That worked for me :) Thanks Lalit – rizzz86 Oct 14 '11 at 14:07
This is really bad advice. Please stop creating memory leaks for SO users. – Reno Feb 21 at 9:50
feedback

If you put Custom Title bar only in Main TabActivity that Title bar will appears in all of your Sub-TabActivity.

For Example if you gave Custom title Bar in Main TabActivity :

requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main_layout);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,R.layout.header_layout);
TextView tv = (TextView) findViewById(R.id.viewTitleId);
ImageView image = (ImageView)findViewById(R.id.imageTitleId);

there is no need to give in all you Sub-tab Activity.

In all sub-Tab Activity you just set setContentView(R.layout.sub_layout);

link|improve this answer
Yes @Venky we can access both textview and imageview in the main tabactivity. But I want to access ImageView in my sub-tab activities. I want different behavior of ImageView on each sub-tab. – rizzz86 Oct 14 '11 at 13:30
@rizzz86 Why you need to use that Image in sub Activity? By default it will appear in all Sub Activity Right? – Venky Oct 14 '11 at 13:33
Yes it is appearing on all sub activities. But I need different behavior on each sub-tab when I click on the ImageView. For example when click on ImageView with 1st opening tab it will store value in table1 and if click on ImageView with 2nd opening tab it will store value in table2 etc – rizzz86 Oct 14 '11 at 13:36
@rizzz86 Come to chat.stackoverflow.com/rooms/1531/casual-chat chat room..we will discuss – Venky Oct 14 '11 at 13:37
Thanks for your support @Venky. I got the answer from Lalit Poptani – rizzz86 Oct 14 '11 at 14:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.