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 a Simple Android App (retired 2014) Pretty Little Things Positioning Text Using a Linear Layout

Shane Desouza
Shane Desouza
3,523 Points

Can't find Weight option in the Properties menu of the Linear Layout

As titled above, I cannot seem to find the weight option in the properties menu. It was supposed to be, in the video, above the Margins title, but in my version, I can't find it.

1 Answer

Erin Kabbash
Erin Kabbash
5,210 Points

Hello,

Some items have changed in the editor and are no longer available. You will run into these issues from time to time as the editors and Android are updated A LOT! Try not to get frustrated and come to the forms for some help. The best way I have found around this particular issue is to click the tab on the bottom to edit the XML directly and you can simply add this line:

<item name="android:layout_weight">0.6</item>

Make sure the line is added between the <LinearLayout> </LinearLayout> tags.

Hope this helps and Happy Coding!

Shane Desouza
Shane Desouza
3,523 Points

Thank you! That was a big help, but I have already found it. It just didn't appear to me until I did some poking around.