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 (2014) Creating the Screen Layout Using a Fullscreen Theme

Button text are all capital letter.

Button text are all capital letter instead of Small letter what's the problem? I can not figure out this problem.

1 Answer

Abdalla Ali
Abdalla Ali
2,972 Points

Hi Fahim,

I think the reason it's because in Android Lollipop the text buttons are all caps following Material design guideline.

If you really want the text to be shown normally (not all caps), then you have to add the following attribute in your xml view:

android:textAllCaps="false"

And you can read more about it in the following link: Material design

Happy coding :)

Abdalla

Its Worked. Thanks for your help