Here is the drawable layout code "round_button.xml"
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="ring">
<solid android:color="#FFFFFF"/>
<stroke android:width="3dip" android:color="#E6E6E6" />
<corners android:radius="30dip"/>
</shape>
Here is the imageview code
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/round_button"
android:layout_marginTop="10dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:src="@drawable/menu1" />
But i dint get the rounded imageview