1
我正在使用畢加索圖像並試圖將圖像放入圓形圖像視圖中,但圖片仍爲正方形。我該如何解決它?如何將圖像放在圓形圖像視圖中
Picasso.with(context).load(resId).resizeDimen(R.dimen.image_size, R.dimen.image_size).into(holder.mImageViewItem);
IMAGE_SIZE = 60dp
繪製資源:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="#FFF"/>
和ImageView的:
<ImageView
android:id="@+id/picture_imageview_item"
android:layout_marginTop="15dp"
android:layout_marginLeft="25dp"
android:layout_marginBottom="15dp"
android:layout_width="60dp"
android:layout_height="60dp"
android:background="@drawable/buttonshape" />
抱歉,但它的犯規幫助我。悲傷:( –
有什麼問題? –
沒有什麼變化:(會嘗試使用一些庫 –