Reputation: 2809
Is there a way to use the visual editor in eclipse ADT or xml to enlarge the sizes of views. I cannot seem to drag enlarge or code enlarge views like switches, buttons... etc.
Thanks for the tips guys. Sorry for the novice question!
Upvotes: 0
Views: 39
Reputation: 3723
Use android:layout_width
and android:layout_height
to define your view dimensions.
Also you should read the docs: http://developer.android.com/guide/topics/ui/declaring-layout.html
Upvotes: 1