Well, I agree with that. I use an open source piece of code for segmented radio buttons ( https://github.com/makeramen/android-segmentedradiobutton ) and it works fine except for a few devices where it will not draw radio buttons correctly.
Here's how it should look:

And this is what it looks like on the Xperia X10 and Acer Liquid E:

I was googling for an answer and still no luck, so I thought I would come here and see if anyone knew what might cause him. I mostly use the same code as the examples, but here is part of the layout for reference:
<com.makeramen.segmented.SegmentedRadioGroup android:id="@+id/jfl_calendar_tabselect" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" android:checkedButton="@+id/all_button"> <RadioButton android:id="@id/all_button" android:minWidth="80dip" android:minHeight="50dip" android:text="@string/calendar_all" android:button="@null" android:textSize="13dip" android:gravity="center" android:textColor="@color/radio_colors" /> <RadioButton android:id="@+id/mine_button" android:minWidth="80dip" android:minHeight="50dip" android:text="@string/calendar_mine" android:button="@null" android:textSize="13dip" android:gravity="center" android:textColor="@color/radio_colors" android:padding="3dip" /> <RadioButton android:id="@+id/friends_button" android:minWidth="80dip" android:minHeight="50dip" android:text="@string/calendar_friends" android:button="@null" android:textSize="13dip" android:gravity="center" android:textColor="@color/radio_colors" android:padding="3dip" /> </com.makeramen.segmented.SegmentedRadioGroup>
Any help would be greatly appreciated!
Spencer elliott
source share