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="30dip"
android:text="Yes"
android:textSize="12dip" />
<RadioButton
android:id="@+id/Y"
android:layout_width="wrap_content"
android:layout_height="30dip"
android:checked="true"
android:text="No"
android:textSize="12dip" />
</RadioGroup>
android:layout_height="wrap_content"
for eachRadioButton
. But your question title and the question are a bit different. In your title, you ask about how to decrease the size of image displayed, but in your question and code, you don't seem to use any image. Please re-frame your question. – Faeroese