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 trialKhalid Sakib
700 Pointswhy it is telling all the time Your 'layout_width' value isn't quite right ?
why it is always telling > Your 'layout_width' value isn't quite right. Take another look and read the instructions carefully. whats wrong?
5 Answers
Calvin Nix
43,828 PointsHey Khalid,
Could you post the code you are using?
Khalid Sakib
700 Points<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="I love Treehouse!" />
</RelativeLayout>
Calvin Nix
43,828 PointsHey Khalid,
Are you not able to pass the code challenge?
Or are you just wondering why you were getting that specific error?
Khalid Sakib
700 Pointsi am not able to pass the code challenge.
Calvin Nix
43,828 PointsHi Khalid,
The code challenge is requested that you edit this line.
android:id="@+id/textView1"
That is the only line that you need to edit to pass this code challenge.