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 an Interactive Story App (Retired) Finishing the User Interface Introducing Styles

build an interactive story app

<resources> _____________ < name="WhiteButton"> _______________ < name="android:background">#FFFFFFFF</item> <item name="android:textColor">#</item>______________ </style> </resources

1 Answer

They tell you the 3 answers are style, item, FF3A8AEC.

By process of elimination I would put style at the top blank space as it would align with the closing style tag. I would then put the hexadecimal value (ff3a8aec) in the last blank spot because that is what the line above has done. finally, I would put the item in the middle blank as the closing tag at the end of the line is an item.

<resources>
  < ______________  name="WhiteButton"> //opening tag to the closing style tag below
    < ______________ name="android:background">#FFFFFFFF</item> //closing item tag with no opening item tag
    <item name="android:textColor">#______________ </item>
  </style> //closing style tag
</resources>

thanks i figured it out already