Praveen
Praveen

Reputation: 91195

CheckBox Style in Android?

I want to do make my check box small than the actual size. How to do it? Any Idea?

for Example we can set the button as small size using the attribute

style="?android:attr/buttonStyleSmall"

ThanX

Upvotes: 2

Views: 6093

Answers (1)

Luis Miguel Serrano
Luis Miguel Serrano

Reputation: 5099

You can define the size of those components through the usage of: android:layout_width and android:layout_height

You might want to check DroidDraw Widget Guide for reference.
Also, they have the DroidDraw GUI Editor available through that same link.

Upvotes: 1

Related Questions