簡體   English   中英

裁剪使用畢加索獲取的圖像?

[英]Cropping an image fetched using Picasso?

我的適配器類中有以下代碼 -

 override fun onBindViewHolder(vendorsHolder: VendorsHolder, i: Int) {
        val model = miniVendorModels[i]
        Picasso.get().load(model.bannerPicture).into(vendorsHolder.vendorImageView)
...
...
...

我從模特那里得到的照片對我來說太寬了。

我怎樣才能將它們裁剪到我自己的尺寸? 我想將其裁剪為它們開頭的 50%(從左側)並僅顯示它們。

編輯 -

這是我的 XML -

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/vendors_row_item_root_layout"
    android:layout_width="152dp"
    android:layout_height="match_parent">

    <androidx.cardview.widget.CardView
        android:id="@+id/search_image_contact_cardview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="5dp"
        app:cardCornerRadius="8dp"
        tools:layout_height="160dp">

        <com.twoverte.views.CropImageView
            android:id="@+id/vendors_row_item_imageview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="fitXY"
            tools:src="@drawable/kikiandggcover" />


    </androidx.cardview.widget.CardView>


</androidx.constraintlayout.widget.ConstraintLayout>

嘗試這個

Picasso.get()
       .load(model.bannerPicture)
       .resize(imgWidth, imgHeight).centerInside()
       .into(vendorsHolder.vendorImageView);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM