Reputation: 12695
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
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
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