Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: How to change CheckBox size?

I would like to make CheckBox a bit smaller/bigger, how can I do this?

like image 315
alex2k8 Avatar asked Jan 27 '10 23:01

alex2k8


1 Answers

Starting with API Level 11 there is another approach exists:

<CheckBox     ...     android:scaleX="0.70"     android:scaleY="0.70" /> 
like image 78
alex2k8 Avatar answered Oct 21 '22 14:10

alex2k8