Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Implementing Designs for Android Customizing the Action Bar Adding Icons to Tabs

Customizing the Action Bar - Challenge Task 1 of 2

Hi All - I must be missing something from the question or the code. The below code keeps giving me a 'Java 28: Incompatible Types' error. Any insight or advice into what could be going wrong is much appreciated!

    for (int i = 0; i < pagerAdapter.getCount(); i++) {
        ActionBar.Tab tab = mActionBar.newTab();
        tab.setTabListener(this);
        tab = tab.setText(pagerAdapter.getPageTitle(i)); 
        mActionBar.addTab(tab);
    }

1 Answer

Ben Jakuben
STAFF
Ben Jakuben
Treehouse Teacher

The setText() method is a void type, which means you can't set it to the tab variable like you have. You simply need to call it on its own.