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.

Hayxe laurus
7,285 PointsPotential Error Task 3
On Task 3, I enter in the code into the textview element after the text size line and its says I haven't inserted it in text view element, I also used the closing tag at the end
1 Answer

Gunjeet Hattar
14,483 PointsI tried the same and it worked for me; Hope it helps
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="1" >
<TextView
android:id="@+id/textView1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:textSize="24sp"
android:textColor="#00FF00" /> <!-- Common mistake I see is when people add space after : -->
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.5" />
</LinearLayout>
Hayxe laurus
7,285 PointsHayxe laurus
7,285 PointsIt worked, I noticed I added a Space. Thanks for the Help :)