2017-05-10 89 views

回答

2

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> 
+0

很好的解決方案,謝謝:) –

相關問題