我有一個SimpleDraweeView
這是一個回收站。如何獲得SimpleDraweeView以正確顯示圖像?
回收站:
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
SimpleDraweeView:
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/feedImage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
/>
我嘗試了很多比scaleType的,但我似乎無法得到一個將顯示全高(只有90%被展示)。寬度很好,但我似乎無法正確獲得高度。獲得適當的方面是正確的組合? (臉譜等)
我只想看到整個圖像。就像它在畫廊或網站上顯示的一樣。 –
無論我使用哪一個,我只能看到圖像高度的85% –
我通常會使用centerCrop,因此您將填充imageView,但如果您希望它適合中心(所有部分都可見並且沒有裁剪) ,那麼會有邊距,因爲你的imageView可能是固定的高度和寬度 –