Jignesh Ansodariya
Jignesh Ansodariya

Reputation: 12695

How can we custmize Check Box in Android?

I want to display Check box like Radio button though is it possible to give our own shape to the check box if possible than help me please thanks

Upvotes: 0

Views: 158

Answers (2)

Balaji.K
Balaji.K

Reputation: 4839

Yes. It is possible. Use this code

<CheckBox  
    android:layout_width="wrap_content"  
    android:layout_height="wrap_content"  
    android:button="@android:drawable/btn_radio"/>

Upvotes: 1

Vineet Shukla
Vineet Shukla

Reputation: 24031

you need to set your own shape or image for both of it's state and have to handle it in the code....

Upvotes: 0

Related Questions