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 Customizing Buttons and Labels

David Hope
David Hope
19,876 Points

Unable 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
Paul Stevens
4,125 Points

Hello,

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 :)

Intenta 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
David Hope
19,876 Points

Thank 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 :)