Click here to Skip to main content
15,880,796 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have designed an activity in which i have two radio button
but those size are more than enough i want to decrease it
i am using text size that decreases only text
if layout size is decrease that decrease only view not radio button circle

<RadioGroup
           android:id="@+id/RG1"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:orientation="horizontal" >

           <RadioButton
               android:id="@+id/N"
               android:layout_width="wrap_content"
               android:layout_height="70dip"
               android:text="Yes"
               android:textSize="12dip" />

           <RadioButton
               android:id="@+id/Y"
               android:layout_width="wrap_content"
               android:layout_height="70dip"
               android:checked="true"
               android:text="No"
               android:textSize="12dip" />
       </RadioGroup>
Posted

1 solution

just select the radio group and then drag how long u want to make small
 
Share this answer
 
Comments
Photon_ 5-Apr-12 0:52am    
it will crop the radio button
Member 8700704 15-Feb-14 3:55am    
I have the same problem.How could we do that Dynamically using C#?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900