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

How to display content AND description for blog reader Android app?

In the building a blog reader course there is a video http://teamtreehouse.com/library/build-a-blog-reader-android-app/exploring-the-masterdetail-template/adding-more-test-data-2

That shows us to replace the .content with .description but what about in our own app. Say if we want to have a title and the content of the blog post.

In this case "content" as mentioned in the video is really the title.

if (mItem != null) {
    ((TextView) rootView.findViewById(R.id.quote_detail)).setText(mItem.description);
}

And I replaced "dummy" with "quote."

What steps would I need to take to display the title and actual post?