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 trialDavid Hope
19,876 PointsUnable to edit TextSize, please help!
When I go to select Text Size, a small white screen gives me the option to choose either 24sp or 24dp. When I select 24sp and hit enter or double left-click, it does not show any change to the Text Size and I receive an audible "Bing" noise, indicating that it is not an option. The right column for TextSize has remained blank despite these attempts.
3 Answers
Paul Stevens
4,125 PointsHello,
Others have had this problem, here's a couple of other forum threads dealing with it:
https://teamtreehouse.com/forum/solved-cant-change-text-size-directly
https://teamtreehouse.com/forum/cant-adjust-any-properties
Hope this helps,
Paul :)
Cristian Rivera
2,192 PointsIntenta cambiar por la vista de código xml.
<TextView
android:id="@+id/txt_some_id"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Some Text"
android:textColor="@color/color_blanco"
android:textSize="50sp"
android:textStyle="bold" />
Te recomiendo subir imagenes o algún pedazo de código para poder ayudarte mejor.
David Hope
19,876 PointsThank you Paul, the first thread you linked to above contains exactly what I needed to fix that issue. I appreciate your help and quick response :)