Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Joshua Torres
1,368 Pointswhat am I doing wrong?
Use a method to set the TAG variable instead of hard-coding the class name as "TreehouseActivity". We want just the class name by itself without the package name: is it getName() or getSimpleName()? Change the "TreehouseActivity" string to the correct method call (ex. TreehouseActivity.class.<insert correct method>).
2 Answers

Kevin Faust
15,353 PointsJust do:
public static final String TAG = TreehouseActivity.class.getSimpleName();
We just want the name without the com package stuff

Seth Kroger
56,403 PointsJust the name of the class by itself is getSimpleName(). getName() will include the package name along with the class name.
TreehouseActivity.class.getSimpleName() == "TreehouseActivity"
TreehouseActivity.class.getName() == "com.treehouse.TreehouseActivity"

Joshua Torres
1,368 Pointsits still wrong

Joshua Torres
1,368 Pointsyes
Emmanuel Chiraerae
6,029 PointsEmmanuel Chiraerae
6,029 Pointsthis code doesnt work