形状图像像带箭头的泡泡(Android)

时间:2017-08-09 07:43:08

标签: android android-imageview shape

我想要的是将我的imageview变成这样的形状

我正在使用这个库

https://github.com/siyamed/android-shape-imageview

enter image description here

我能够在其上添加边框半径,但我的问题是 我不知道如何在添加边框半径的同时添加箭头

2 个答案:

答案 0 :(得分:1)

使用此app:siArrowPosition="right": - > siArrowPosition指向箭头的位置,当前离开|右侧

使用此app:siRadius="6dp": - > dp中的圆角半径           dpfor border中的app:siBorderWidth="6dp" 边框宽度

<com.github.siyamed.shapeimageview.BubbleImageView
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:src="@drawable/neo"
  app:siRadius="6dp"
  app:siBorderWidth="6dp"
  app:siArrowPosition="right"
  app:siSquare="true"/>

答案 1 :(得分:0)

选中它即可获得这种气泡视图https://github.com/florent37/ShapeOfView

<com.github.florent37.shapeofview.shapes.BubbleView
    android:layout_width="150dp"
    android:layout_height="150dp"
    app:shape_bubble_arrowHeight="10dp"
    app:shape_bubble_arrowWidth="10dp"
    app:shape_bubble_arrowPosition="bottom"
    app:shape_bubble_borderRadius="20dp"
    app:arrow_posititon_percent="0.5"
    >

     <!-- YOUR CONTENT -->

</com.github.florent37.shapeofview.shapes.BubbleView>

enter image description here