1<!-- ImageView which will used as a button with OnClickListener -->
2 <ImageView
3 android:id="@+id/imageView"
4 android:layout_width="200dp"
5 android:layout_height="wrap_content"
6 android:layout_centerInParent="true"
7 app:srcCompat="@drawable/homeicon" />
1<?xml version="1.0" encoding="utf-8"?>
2<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
3 <solid android:color="#FE4543"></solid>
4 <stroke android:color="#FE4543" android:width="1dp"></stroke>
5
6</shape>
7