-1
我需要從一側凹視圖。實現這一目標的最佳和最簡單的方法是什麼?感謝您的幫助如何在android中創建凹面imageview?
我需要從一側凹視圖。實現這一目標的最佳和最簡單的方法是什麼?感謝您的幫助如何在android中創建凹面imageview?
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>
很好的解決方案,謝謝:) –