-1

我需要从一侧凹视图。实现这一目标的最佳和最简单的方法是什么?感谢帮助在此处输入图像描述

4

1 回答 1

3

https://github.com/florent37/ArcLayout

既然你问了最简单的方法;如果您不想处理 BitmapShader 和动画,只需使用它。

裁剪内部:

<com.github.florent37.arclayout.ArcLayout
          android:layout_width="match_parent"
          android:layout_height="200dp"
          app:arc_cropDirection="cropInside"
          app:arc_height="90dp"
          app:arc_padding="30dp"
          android:elevation="5dp"
          >

          <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:src="@drawable/yourImage" /> 

 </com.github.florent37.arclayout.ArcLayout>   
于 2017-05-10T11:23:20.767 回答