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 trialFahim Shahrier Rasel
Courses Plus Student 1,580 PointsButton 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
2,972 PointsHi 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
Fahim Shahrier Rasel
Courses Plus Student 1,580 PointsFahim Shahrier Rasel
Courses Plus Student 1,580 PointsIts Worked. Thanks for your help