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 Build a Blog Reader Android App Exploring the Master-Detail Template Adding More Test Data

Benjamin Swift
Benjamin Swift
1,536 Points

Stuck on this code challenge!

Hi, I cannot figure out where to add this director member variable in this code challenge! Help! Thanks!

1 Answer

Stone Preston
Stone Preston
42,016 Points

just add a string variable declaration near the other member variables in the dummy item class (make sure you put it in dummy item and not dummy content, dummy item is towards the bottom

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class DummyContent {


    public static List<DummyItem> ITEMS = new ArrayList<DummyItem>();
    public static Map<String, DummyItem> ITEM_MAP = new HashMap<String, DummyItem>();

    static {
        // Add 3 sample items.
        addItem(new DummyItem("1", "The Avengers"));
        addItem(new DummyItem("2", "The Hobbit"));
        addItem(new DummyItem("3", "Ball of Fire"));
    }

    private static void addItem(DummyItem item) {
        ITEMS.add(item);
        ITEM_MAP.put(item.id, item);
    }

    /**
     * A dummy item representing a piece of content.
     */
    public static class DummyItem {

        //this is where you add the member variable
        public static String director;
        public String id;
        public String content;

        public DummyItem(String id, String content) {
            this.id = id;
            this.content = content;
        }
    }
}