Radio button group bad showing in some android devices



please tell me what is my problem in radio button group or radio button xml code? radio button circle get in text in some device like "HTC Sensation". i don't know what is problem. please help me...


this link is picture of HTC Sensation: http://ift.tt/1BBlzZq


and this one is picture of simulator: http://ift.tt/1BBlyEQ



<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/TextView01"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginTop="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:text="@string/dialog_choose_music"
android:textColor="#ffffff"
android:textSize="18sp" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<RadioGroup
android:id="@+id/selectMusicRadioGroup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/between_games_timer"
android:orientation="vertical" >

<RadioButton
android:id="@+id/silent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="3dp"
android:background="@drawable/bg_color_selector"
android:checked="true"
android:ellipsize="end"
android:tag="silent"
android:maxLines="1"
android:paddingBottom="15dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="15dp"
android:singleLine="true"
android:text="@string/silent"
android:textColor="#ffffff"
android:textSize="16sp" >
</RadioButton>

<RadioButton
android:id="@+id/myMusic"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="3dp"
android:background="@drawable/bg_color_selector"
android:ellipsize="end"
android:tag="my_music"
android:maxLines="1"
android:paddingBottom="15dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="15dp"
android:singleLine="true"
android:text="@string/custom_music"
android:textColor="#ffffff"
android:textSize="16sp" >
</RadioButton>
</RadioGroup>
</LinearLayout>
</LinearLayout>

Tiada ulasan:

Catat Ulasan