1

I am quite new to android, can anyone please tell me how to create hexagonal view like bellow in the image.

enter image description here

Akshaykumar Maldhure
  • 1,239
  • 1
  • 18
  • 32

1 Answers1

3

Shape Image View can help you with your requirement

<com.github.siyamed.shapeimageview.{ClassName}
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:layout_margin="8dp"
   android:src="@drawable/neo"
   app:siBorderWidth="8dp"
   app:siBorderColor="@color/darkgray"/>

enter image description here

in your case you can use com.github.siyamed.shapeimageview.HexagonImageView

There are lot other shapes available, refer that library for more detail.

Have a look at CustomShapeImageView also

Ravi
  • 34,851
  • 21
  • 122
  • 183